Index: components/mus/main.cc |
diff --git a/components/mus/main.cc b/components/mus/main.cc |
index e244124110542a194cd4aec7dacf64c254507a51..a2f08172655d99d4b94bbdca0b8df22782af2a6c 100644 |
--- a/components/mus/main.cc |
+++ b/components/mus/main.cc |
@@ -2,15 +2,11 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "components/mus/mus_app.h" |
+#include "components/mus/view_manager_app.h" |
#include "mojo/application/public/cpp/application_runner.h" |
#include "third_party/mojo/src/mojo/public/c/system/main.h" |
-namespace mus { |
- |
MojoResult MojoMain(MojoHandle shell_handle) { |
- mojo::ApplicationRunner runner(new MandolineUIServicesApp); |
+ mojo::ApplicationRunner runner(new view_manager::ViewManagerApp); |
return runner.Run(shell_handle); |
} |
- |
-} // namespace mus |