Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Unified Diff: mojo/services/view_manager/public/cpp/view_tracker.h

Issue 911073005: Drop all uses of //base except ObserverList from view mgr client lib (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mojo/services/view_manager/public/cpp/view_tracker.h
diff --git a/mojo/services/view_manager/public/cpp/view_tracker.h b/mojo/services/view_manager/public/cpp/view_tracker.h
index 05325b7705e0cfd66b39e7b8793c3f448586687d..b67c3705479999a43ffff077f1909be664265a72 100644
--- a/mojo/services/view_manager/public/cpp/view_tracker.h
+++ b/mojo/services/view_manager/public/cpp/view_tracker.h
@@ -5,10 +5,9 @@
#ifndef MOJO_SERVICES_VIEW_MANAGER_PUBLIC_CPP_VIEW_TRACKER_H_
#define MOJO_SERVICES_VIEW_MANAGER_PUBLIC_CPP_VIEW_TRACKER_H_
+#include <stdint.h>
#include <set>
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
#include "view_manager/public/cpp/view_observer.h"
namespace mojo {
@@ -39,7 +38,9 @@ class ViewTracker : public ViewObserver {
private:
Views views_;
- DISALLOW_COPY_AND_ASSIGN(ViewTracker);
+ // Disallow copy and assignment.
+ ViewTracker(const ViewTracker&);
sky 2015/02/10 22:51:15 MOJO_DISALLOW_COPY_AND_ASSIGN?
+ void operator=(const ViewTracker&);
};
} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698