Index: mash/system_ui/system_ui.h |
diff --git a/mash/example/mock_sysui/mock_sysui.h b/mash/system_ui/system_ui.h |
similarity index 67% |
rename from mash/example/mock_sysui/mock_sysui.h |
rename to mash/system_ui/system_ui.h |
index 23e068b7351f7f55bcc7995e9a9b155b3df0b233..ffab417bdacdf208996d5ddc6f7f2f7be950c286 100644 |
--- a/mash/example/mock_sysui/mock_sysui.h |
+++ b/mash/system_ui/system_ui.h |
@@ -2,8 +2,8 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef MASH_EXAMPLE_MOCK_SYSUI_MOCK_SYSUI_H_ |
-#define MASH_EXAMPLE_MOCK_SYSUI_MOCK_SYSUI_H_ |
+#ifndef MASH_SYSTEM_UI_SYSTEM_UI_H_ |
+#define MASH_SYSTEM_UI_SYSTEM_UI_H_ |
#include "base/macros.h" |
#include "base/memory/scoped_ptr.h" |
@@ -14,10 +14,13 @@ namespace views { |
class AuraInit; |
} |
-class MockSysUI : public mojo::ApplicationDelegate { |
+namespace mash { |
+namespace system_ui { |
+ |
+class SystemUI : public mojo::ApplicationDelegate { |
public: |
- MockSysUI(); |
- ~MockSysUI() override; |
+ SystemUI(); |
+ ~SystemUI() override; |
private: |
// mojo::ApplicationDelegate: |
@@ -29,7 +32,10 @@ class MockSysUI : public mojo::ApplicationDelegate { |
scoped_ptr<views::AuraInit> aura_init_; |
- DISALLOW_COPY_AND_ASSIGN(MockSysUI); |
+ DISALLOW_COPY_AND_ASSIGN(SystemUI); |
}; |
-#endif // MASH_EXAMPLE_MOCK_SYSUI_MOCK_SYSUI_H_ |
+} // namespace system_ui |
+} // namespace mash |
+ |
+#endif // MASH_SYSTEM_UI_SYSTEM_UI_H_ |