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

Unified Diff: components/surfaces/main.cc

Issue 1142323003: Remove duplicate application cpp files in mojo/application. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 7 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 | « components/surfaces/BUILD.gn ('k') | components/view_manager/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/surfaces/main.cc
diff --git a/components/surfaces/main.cc b/components/surfaces/main.cc
index 58381224ac9a7a7816f4e4e2af4b2c74bc66db9d..c052a2653d3612b6b9cb377d20cf7e1bcd1d15ec 100644
--- a/components/surfaces/main.cc
+++ b/components/surfaces/main.cc
@@ -3,11 +3,10 @@
// found in the LICENSE file.
#include "components/surfaces/surfaces_service_application.h"
-#include "mojo/application/application_runner_chromium.h"
+#include "mojo/application/public/cpp/application_runner.h"
#include "third_party/mojo/src/mojo/public/c/system/main.h"
MojoResult MojoMain(MojoHandle shell_handle) {
- mojo::ApplicationRunnerChromium runner(
- new surfaces::SurfacesServiceApplication);
+ mojo::ApplicationRunner runner(new surfaces::SurfacesServiceApplication);
return runner.Run(shell_handle);
}
« no previous file with comments | « components/surfaces/BUILD.gn ('k') | components/view_manager/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698