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

Unified Diff: components/nacl/renderer/manifest_service_channel.cc

Issue 1184523003: attachment broker wip (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor comments. Created 5 years, 6 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
Index: components/nacl/renderer/manifest_service_channel.cc
diff --git a/components/nacl/renderer/manifest_service_channel.cc b/components/nacl/renderer/manifest_service_channel.cc
index 41f68dff4e944cc1a3229a264b9837b9a5191331..06b2ed5b0fe50cd7ed6feb80cccc66fc9b10add3 100644
--- a/components/nacl/renderer/manifest_service_channel.cc
+++ b/components/nacl/renderer/manifest_service_channel.cc
@@ -21,7 +21,8 @@ ManifestServiceChannel::ManifestServiceChannel(
const IPC::ChannelHandle& handle,
const base::Callback<void(int32_t)>& connected_callback,
scoped_ptr<Delegate> delegate,
- base::WaitableEvent* waitable_event)
+ base::WaitableEvent* waitable_event,
+ IPC::AttachmentBroker* broker)
: connected_callback_(connected_callback),
delegate_(delegate.Pass()),
channel_(IPC::SyncChannel::Create(
@@ -30,7 +31,8 @@ ManifestServiceChannel::ManifestServiceChannel(
this,
content::RenderThread::Get()->GetIOMessageLoopProxy(),
true,
- waitable_event)),
+ waitable_event,
+ broker)),
peer_pid_(base::kNullProcessId),
weak_ptr_factory_(this) {
}
« no previous file with comments | « components/nacl/renderer/manifest_service_channel.h ('k') | components/nacl/renderer/ppb_nacl_private_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698