Chromium Code Reviews| 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 |