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

Unified Diff: shell/child_process_host.cc

Issue 1659213002: Move PlatformChannelPair to //mojo/edk/platform and rename it PlatformPipe. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 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 | « shell/child_main.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: shell/child_process_host.cc
diff --git a/shell/child_process_host.cc b/shell/child_process_host.cc
index e4d17459538a3296201ab6a256508da9e1e99dbc..69de5d72d66ab2add438f32efd90d9a442cce279 100644
--- a/shell/child_process_host.cc
+++ b/shell/child_process_host.cc
@@ -20,7 +20,7 @@
#include "build/build_config.h"
#include "mojo/edk/base_edk/platform_task_runner_impl.h"
#include "mojo/edk/embedder/multiprocess_embedder.h"
-#include "mojo/edk/embedder/platform_channel_pair.h"
+#include "mojo/edk/platform/platform_pipe.h"
#include "mojo/edk/util/ref_ptr.h"
#include "mojo/public/cpp/system/message_pipe.h"
#include "shell/application_manager/native_application_options.h"
@@ -28,6 +28,7 @@
#include "shell/context.h"
#include "shell/task_runners.h"
+using mojo::platform::PlatformPipe;
using mojo::util::MakeRefCounted;
namespace shell {
@@ -38,7 +39,7 @@ struct ChildProcessHost::LaunchData {
NativeApplicationOptions options;
base::FilePath child_path;
- mojo::embedder::PlatformChannelPair platform_channel_pair;
+ PlatformPipe platform_channel_pair;
std::string child_connection_id;
};
« no previous file with comments | « shell/child_main.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698