Index: ash/display/screen_ash_unittest.cc |
diff --git a/ash/display/screen_ash_unittest.cc b/ash/display/screen_ash_unittest.cc |
index a60d54fba20cefd10ecf4b882a54d74a475d6b26..21a473f7c03a6740a542ab7ac6928cc2a289dd51 100644 |
--- a/ash/display/screen_ash_unittest.cc |
+++ b/ash/display/screen_ash_unittest.cc |
@@ -28,10 +28,10 @@ TEST_F(ScreenAshTest, TestGetWindowAtScreenPoint) { |
UpdateDisplay("200x200,400x400"); |
aura::test::TestWindowDelegate delegate; |
- scoped_ptr<aura::Window> win1(CreateTestWindowInShellWithDelegate( |
+ std::unique_ptr<aura::Window> win1(CreateTestWindowInShellWithDelegate( |
&delegate, 0, gfx::Rect(0, 0, 200, 200))); |
- scoped_ptr<aura::Window> win2(CreateTestWindowInShellWithDelegate( |
+ std::unique_ptr<aura::Window> win2(CreateTestWindowInShellWithDelegate( |
&delegate, 1, gfx::Rect(200, 200, 100, 100))); |
ASSERT_NE(win1->GetRootWindow(), win2->GetRootWindow()); |