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

Unified Diff: mash/shelf/shelf_application.h

Issue 1576683002: Add rudimentary mash shelf functionality. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl format Created 4 years, 11 months 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/shelf/main.cc ('k') | mash/shelf/shelf_application.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mash/shelf/shelf_application.h
diff --git a/mash/system_ui/system_ui.h b/mash/shelf/shelf_application.h
similarity index 68%
rename from mash/system_ui/system_ui.h
rename to mash/shelf/shelf_application.h
index 86bfb22b5018c44d13b1e5e9b6b036596058712d..901bdfa62a75e8b923890dcf8791889db5e833b5 100644
--- a/mash/system_ui/system_ui.h
+++ b/mash/shelf/shelf_application.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_SYSTEM_UI_SYSTEM_UI_H_
-#define MASH_SYSTEM_UI_SYSTEM_UI_H_
+#ifndef MASH_SHELF_SHELF_APPLICATION_H_
+#define MASH_SHELF_SHELF_APPLICATION_H_
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
@@ -15,12 +15,12 @@ class AuraInit;
}
namespace mash {
-namespace system_ui {
+namespace shelf {
-class SystemUI : public mojo::ApplicationDelegate {
+class ShelfApplication : public mojo::ApplicationDelegate {
public:
- SystemUI();
- ~SystemUI() override;
+ ShelfApplication();
+ ~ShelfApplication() override;
private:
// mojo::ApplicationDelegate:
@@ -32,10 +32,10 @@ class SystemUI : public mojo::ApplicationDelegate {
scoped_ptr<views::AuraInit> aura_init_;
- DISALLOW_COPY_AND_ASSIGN(SystemUI);
+ DISALLOW_COPY_AND_ASSIGN(ShelfApplication);
};
-} // namespace system_ui
+} // namespace shelf
} // namespace mash
-#endif // MASH_SYSTEM_UI_SYSTEM_UI_H_
+#endif // MASH_SHELF_SHELF_APPLICATION_H_
« no previous file with comments | « mash/shelf/main.cc ('k') | mash/shelf/shelf_application.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698