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

Unified Diff: mash/example/window_type_launcher/main.cc

Issue 1882423004: Move shell service to toplevel shell namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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
Index: mash/example/window_type_launcher/main.cc
diff --git a/mash/example/window_type_launcher/main.cc b/mash/example/window_type_launcher/main.cc
index 0f2ee76031d53ac0fed51035bde0e9da2da0e7b4..04cd24d98292db130409662ca2b7a1d0e5a20d85 100644
--- a/mash/example/window_type_launcher/main.cc
+++ b/mash/example/window_type_launcher/main.cc
@@ -39,8 +39,8 @@ int main(int argc, char** argv) {
base::AtExitManager at_exit;
base::CommandLine::Init(argc, argv);
- mojo::shell::InitializeLogging();
- mojo::shell::WaitForDebuggerIfNecessary();
+ shell::InitializeLogging();
+ shell::WaitForDebuggerIfNecessary();
#if !defined(OFFICIAL_BUILD)
base::debug::EnableInProcessStackDumping();
@@ -62,8 +62,8 @@ int main(int argc, char** argv) {
base::MessageLoop loop;
WindowTypeLauncher delegate;
- mojo::ShellConnection impl(
- &delegate, mojo::shell::GetShellClientRequestFromCommandLine());
+ shell::ShellConnection impl(&delegate,
+ shell::GetShellClientRequestFromCommandLine());
loop.Run();
mojo::edk::ShutdownIPCSupport();

Powered by Google App Engine
This is Rietveld 408576698