Index: ash/extended_desktop_unittest.cc |
diff --git a/ash/extended_desktop_unittest.cc b/ash/extended_desktop_unittest.cc |
index e4528f2391ef0fa96e2e45e1c39171e3315d6dff..7fc1e2f61b844dc00b724af4558e58efd73eaafa 100644 |
--- a/ash/extended_desktop_unittest.cc |
+++ b/ash/extended_desktop_unittest.cc |
@@ -6,6 +6,7 @@ |
#include "ash/display/multi_display_manager.h" |
#include "ash/shell.h" |
#include "ash/test/ash_test_base.h" |
+#include "ash/wm/property_util.h" |
#include "ash/wm/window_cycle_controller.h" |
#include "ash/wm/window_util.h" |
#include "ui/aura/client/activation_client.h" |
@@ -78,7 +79,7 @@ TEST_F(ExtendedDesktopTest, Basic) { |
ASSERT_EQ(2U, root_windows.size()); |
for (Shell::RootWindowList::const_iterator iter = root_windows.begin(); |
iter != root_windows.end(); ++iter) { |
- EXPECT_TRUE(wm::GetRootWindowController(*iter) != NULL); |
+ EXPECT_TRUE(GetRootWindowController(*iter) != NULL); |
} |
// Make sure root windows share the same controllers. |
EXPECT_EQ(root_windows[0]->GetFocusManager(), |