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

Unified Diff: trunk/src/components/nacl/browser/nacl_process_host.cc

Issue 312553004: Revert 274310 "Introduce IPC::ChannelProxy::Create*() and IPC::S..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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 | « trunk/src/chrome/service/service_ipc_server.cc ('k') | trunk/src/components/nacl/loader/nacl_listener.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/components/nacl/browser/nacl_process_host.cc
===================================================================
--- trunk/src/components/nacl/browser/nacl_process_host.cc (revision 274314)
+++ trunk/src/components/nacl/browser/nacl_process_host.cc (working copy)
@@ -905,10 +905,11 @@
if (!ipc_proxy_channel_.get()) {
DCHECK_EQ(PROCESS_TYPE_NACL_LOADER, process_->GetData().process_type);
- ipc_proxy_channel_ = IPC::ChannelProxy::CreateClient(
- browser_channel_handle,
- NULL,
- base::MessageLoopProxy::current().get());
+ ipc_proxy_channel_.reset(
+ new IPC::ChannelProxy(browser_channel_handle,
+ IPC::Channel::MODE_CLIENT,
+ NULL,
+ base::MessageLoopProxy::current().get()));
// Create the browser ppapi host and enable PPAPI message dispatching to the
// browser process.
ppapi_host_.reset(content::BrowserPpapiHost::CreateExternalPluginProcess(
« no previous file with comments | « trunk/src/chrome/service/service_ipc_server.cc ('k') | trunk/src/components/nacl/loader/nacl_listener.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698