Index: services/window_manager/window_manager_test_util.h |
diff --git a/services/window_manager/window_manager_test_util.h b/services/window_manager/window_manager_test_util.h |
index 8d40d76f3574543cb8aec32d463196590d1adb0e..e029d9df00dfef36ff38418c88aa5f6bc720f692 100644 |
--- a/services/window_manager/window_manager_test_util.h |
+++ b/services/window_manager/window_manager_test_util.h |
@@ -15,14 +15,14 @@ namespace gfx { |
class Rect; |
} |
-namespace mojo { |
+namespace window_manager { |
// A wrapper around View so we can instantiate these directly without a |
// ViewManager. |
-class TestView : public View { |
+class TestView : public mojo::View { |
public: |
TestView(int id, const gfx::Rect& rect); |
- TestView(int id, const gfx::Rect& rect, View* parent); |
+ TestView(int id, const gfx::Rect& rect, mojo::View* parent); |
~TestView(); |
// Builds a child view as a pointer. The caller is responsible for making |
@@ -38,6 +38,6 @@ class TestView : public View { |
DISALLOW_COPY_AND_ASSIGN(TestView); |
}; |
-} // namespace mojo |
+} // namespace window_manager |
#endif // SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_TEST_UTIL_H_ |