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

Unified Diff: mash/shell/shell_application_delegate.cc

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/shell/shell_application_delegate.h ('k') | mash/system_ui/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mash/shell/shell_application_delegate.cc
diff --git a/mash/shell/shell_application_delegate.cc b/mash/shell/shell_application_delegate.cc
index 11f5cb7957b60a763a60b42d1365a9f20928ea0d..6672295c3b909da5fe1c7168782134a485ee457f 100644
--- a/mash/shell/shell_application_delegate.cc
+++ b/mash/shell/shell_application_delegate.cc
@@ -20,7 +20,7 @@ void ShellApplicationDelegate::Initialize(mojo::ApplicationImpl* app) {
StartBrowserDriver();
StartWindowManager();
StartWallpaper();
- StartSystemUI();
+ StartShelf();
StartQuickLaunch();
}
@@ -42,9 +42,9 @@ void ShellApplicationDelegate::StartWallpaper() {
base::Unretained(this)));
}
-void ShellApplicationDelegate::StartSystemUI() {
- StartRestartableService("mojo:system_ui",
- base::Bind(&ShellApplicationDelegate::StartSystemUI,
+void ShellApplicationDelegate::StartShelf() {
+ StartRestartableService("mojo:shelf",
+ base::Bind(&ShellApplicationDelegate::StartShelf,
base::Unretained(this)));
}
« no previous file with comments | « mash/shell/shell_application_delegate.h ('k') | mash/system_ui/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698