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

Unified Diff: services/ui/input_manager/main.cc

Issue 1552043002: Make Mozart view manager use the new compositor. (Closed) Base URL: git@github.com:domokit/mojo.git@moz-12
Patch Set: Created 4 years, 12 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: services/ui/input_manager/main.cc
diff --git a/services/gfx/compositor/main.cc b/services/ui/input_manager/main.cc
similarity index 72%
copy from services/gfx/compositor/main.cc
copy to services/ui/input_manager/main.cc
index e03e9cab5e579571b0e554d5d55057fe5c877032..286f898965c588b7cab3de8ec7a44e09df93cc0a 100644
--- a/services/gfx/compositor/main.cc
+++ b/services/ui/input_manager/main.cc
@@ -4,9 +4,9 @@
#include "mojo/application/application_runner_chromium.h"
#include "mojo/public/c/system/main.h"
-#include "services/gfx/compositor/compositor_app.h"
+#include "services/ui/input_manager/input_manager_app.h"
MojoResult MojoMain(MojoHandle application_request) {
- mojo::ApplicationRunnerChromium runner(new compositor::CompositorApp);
+ mojo::ApplicationRunnerChromium runner(new input_manager::InputManagerApp);
return runner.Run(application_request);
}

Powered by Google App Engine
This is Rietveld 408576698