From fe176fa45a70040d20fe295ba2fc9775996152b2 Mon Sep 17 00:00:00 2001 From: "hellner@google.com" Date: Thu, 14 Jul 2011 15:43:02 +0000 Subject: [PATCH] Removed DISALLOW_* macros from the system_wrappers interface files. Review URL: http://webrtc-codereview.appspot.com/69003 git-svn-id: http://webrtc.googlecode.com/svn/trunk@206 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/system_wrappers/interface/list_wrapper.h | 2 -- src/system_wrappers/interface/map_wrapper.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/system_wrappers/interface/list_wrapper.h b/src/system_wrappers/interface/list_wrapper.h index bc10ad4a7d..3608adaa37 100644 --- a/src/system_wrappers/interface/list_wrapper.h +++ b/src/system_wrappers/interface/list_wrapper.h @@ -34,7 +34,6 @@ protected: private: const void* item_ptr_; const unsigned int item_; - DISALLOW_COPY_AND_ASSIGN(ListItem); }; class ListWrapper @@ -102,7 +101,6 @@ private: ListItem* first_; ListItem* last_; unsigned int size_; - DISALLOW_COPY_AND_ASSIGN(ListWrapper); }; } //namespace webrtc diff --git a/src/system_wrappers/interface/map_wrapper.h b/src/system_wrappers/interface/map_wrapper.h index 9297382cd0..7d4e73387b 100644 --- a/src/system_wrappers/interface/map_wrapper.h +++ b/src/system_wrappers/interface/map_wrapper.h @@ -31,7 +31,6 @@ public: private: int item_id_; void* item_pointer_; - DISALLOW_COPY_AND_ASSIGN(MapItem); }; class MapWrapper @@ -70,7 +69,6 @@ public: private: std::map map_; - DISALLOW_COPY_AND_ASSIGN(MapWrapper); }; } // namespace webrtc