Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(269)

Unified Diff: mash/system_ui/system_ui.h

Issue 1492563002: Introduce mash/shell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mash/system_ui/main.cc ('k') | mash/system_ui/system_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « mash/system_ui/main.cc ('k') | mash/system_ui/system_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698