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

Unified Diff: mojo/shell/runner/host/child_process_host.h

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/host/child_process.cc ('k') | mojo/shell/runner/host/child_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/runner/host/child_process_host.h
diff --git a/mojo/shell/runner/host/child_process_host.h b/mojo/shell/runner/host/child_process_host.h
index 9c0acdad48a0310659316a46ce04d408c5737c54..7472096a898b3b413fc4f0d4189fc14e34a195db 100644
--- a/mojo/shell/runner/host/child_process_host.h
+++ b/mojo/shell/runner/host/child_process_host.h
@@ -64,9 +64,10 @@ class ChildProcessHost {
// Waits for the child process to terminate, and returns its exit code.
int Join();
- // See |ChildController|:
- void StartApp(InterfaceRequest<Application> application_request,
- const ChildController::StartAppCallback& on_app_complete);
+ // See |mojom::ChildController|:
+ void StartApp(
+ InterfaceRequest<mojom::Application> application_request,
+ const mojom::ChildController::StartAppCallback& on_app_complete);
void ExitNow(int32_t exit_code);
protected:
@@ -127,9 +128,9 @@ class ChildProcessHost {
base::Process child_process_;
// Used for the ChildController binding.
embedder::PlatformChannelPair platform_channel_pair_;
- ChildControllerPtr controller_;
+ mojom::ChildControllerPtr controller_;
embedder::ChannelInfo* channel_info_;
- ChildController::StartAppCallback on_app_complete_;
+ mojom::ChildController::StartAppCallback on_app_complete_;
embedder::HandlePassingInformation handle_passing_info_;
// Used only when --use-new-edk is specified. Used to back the NodeChannel
« no previous file with comments | « mojo/shell/runner/host/child_process.cc ('k') | mojo/shell/runner/host/child_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698