Index: ui/base/test/scoped_fake_nswindow_fullscreen.h |
diff --git a/ui/base/test/scoped_fake_nswindow_fullscreen.h b/ui/base/test/scoped_fake_nswindow_fullscreen.h |
index e4bdca39fe546eacb3b3ce572740320fddd29613..8424932923ed2aa9d1002ba4c3843608c3e8a162 100644 |
--- a/ui/base/test/scoped_fake_nswindow_fullscreen.h |
+++ b/ui/base/test/scoped_fake_nswindow_fullscreen.h |
@@ -5,8 +5,9 @@ |
#ifndef UI_BASE_TEST_SCOPED_FAKE_NSWINDOW_FULLSCREEN_H_ |
#define UI_BASE_TEST_SCOPED_FAKE_NSWINDOW_FULLSCREEN_H_ |
+#include <memory> |
+ |
#include "base/macros.h" |
-#include "base/memory/scoped_ptr.h" |
namespace ui { |
namespace test { |
@@ -24,7 +25,7 @@ class ScopedFakeNSWindowFullscreen { |
~ScopedFakeNSWindowFullscreen(); |
private: |
- scoped_ptr<Impl> impl_; |
+ std::unique_ptr<Impl> impl_; |
DISALLOW_COPY_AND_ASSIGN(ScopedFakeNSWindowFullscreen); |
}; |