| 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();
|
|
|