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

Unified Diff: mojo/shell/runner/host/child_process.cc

Issue 1679573002: Move shell interfaces into the shell.mojom namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@delegate
Patch Set: . Created 4 years, 10 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 | « mojo/shell/runner/child/test_native_main.cc ('k') | mojo/shell/runner/host/child_process_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/runner/host/child_process.cc
diff --git a/mojo/shell/runner/host/child_process.cc b/mojo/shell/runner/host/child_process.cc
index 23b1ddf5f60611c24af91431dd8805bc3ffcb90f..1d9228c8e7dc976ab9fb81c88f1537a623cce86f 100644
--- a/mojo/shell/runner/host/child_process.cc
+++ b/mojo/shell/runner/host/child_process.cc
@@ -194,7 +194,7 @@ class AppContext : public embedder::ProcessDelegate {
// ChildControllerImpl ------------------------------------------------------
-class ChildControllerImpl : public ChildController {
+class ChildControllerImpl : public mojom::ChildController {
public:
~ChildControllerImpl() override {
DCHECK(thread_checker_.CalledOnValidThread());
@@ -235,7 +235,7 @@ class ChildControllerImpl : public ChildController {
}
// |ChildController| methods:
- void StartApp(InterfaceRequest<Application> application_request,
+ void StartApp(InterfaceRequest<mojom::Application> application_request,
const StartAppCallback& on_app_complete) override {
DCHECK(thread_checker_.CalledOnValidThread());
@@ -258,7 +258,7 @@ class ChildControllerImpl : public ChildController {
static void StartAppOnMainThread(
base::NativeLibrary app_library,
- InterfaceRequest<Application> application_request) {
+ InterfaceRequest<mojom::Application> application_request) {
if (!RunNativeApplication(app_library, std::move(application_request))) {
LOG(ERROR) << "Failure to RunNativeApplication()";
}
« no previous file with comments | « mojo/shell/runner/child/test_native_main.cc ('k') | mojo/shell/runner/host/child_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698