Index: ui/views/mus/window_manager_connection.h |
diff --git a/ui/views/mus/window_manager_connection.h b/ui/views/mus/window_manager_connection.h |
index 690598933467bb4edc82ae94991c4b3e934e7234..271691978b4aa6a8c86bd1a49596c6863b8b1fc1 100644 |
--- a/ui/views/mus/window_manager_connection.h |
+++ b/ui/views/mus/window_manager_connection.h |
@@ -7,8 +7,9 @@ |
#include <stdint.h> |
+#include <memory> |
+ |
#include "base/macros.h" |
-#include "base/memory/scoped_ptr.h" |
#include "components/mus/public/cpp/window_tree_delegate.h" |
#include "ui/views/mus/mus_export.h" |
#include "ui/views/mus/screen_mus_delegate.h" |
@@ -66,8 +67,8 @@ class VIEWS_MUS_EXPORT WindowManagerConnection |
void OnWindowManagerFrameValuesChanged() override; |
mojo::Connector* connector_; |
- scoped_ptr<ScreenMus> screen_; |
- scoped_ptr<mus::WindowTreeConnection> window_tree_connection_; |
+ std::unique_ptr<ScreenMus> screen_; |
+ std::unique_ptr<mus::WindowTreeConnection> window_tree_connection_; |
DISALLOW_COPY_AND_ASSIGN(WindowManagerConnection); |
}; |