summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_channel_nacl.h
diff options
context:
space:
mode:
authorerikchen <erikchen@chromium.org>2015-09-23 20:26:38 -0700
committerCommit bot <commit-bot@chromium.org>2015-09-24 03:28:27 +0000
commit30dc2811d9c106d733cea51f5600875cacba2f80 (patch)
treeb867453e48f95aed038868096f4b57b755acc7a7 /ipc/ipc_channel_nacl.h
parent3a2ac1dd9e42e314c77300864c108ea8be51aadd (diff)
downloadchromium_src-30dc2811d9c106d733cea51f5600875cacba2f80.zip
chromium_src-30dc2811d9c106d733cea51f5600875cacba2f80.tar.gz
chromium_src-30dc2811d9c106d733cea51f5600875cacba2f80.tar.bz2
ipc: Remove unnecessary attachment broker plumbing.
The original design was to pass around an instance of an attachment broker. The new design uses a single global, and no longer needs any plumbing. This CL removes the last vestiges of the plumbing. BUG=493414 Review URL: https://codereview.chromium.org/1354973006 Cr-Commit-Position: refs/heads/master@{#350471}
Diffstat (limited to 'ipc/ipc_channel_nacl.h')
-rw-r--r--ipc/ipc_channel_nacl.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/ipc/ipc_channel_nacl.h b/ipc/ipc_channel_nacl.h
index 0ed0da8..b7e97cc 100644
--- a/ipc/ipc_channel_nacl.h
+++ b/ipc/ipc_channel_nacl.h
@@ -35,11 +35,9 @@ class ChannelNacl : public Channel,
public internal::ChannelReader {
public:
// Mirror methods of Channel, see ipc_channel.h for description.
- // |broker| must outlive the newly created object.
ChannelNacl(const IPC::ChannelHandle& channel_handle,
Mode mode,
- Listener* listener,
- AttachmentBroker* broker);
+ Listener* listener);
~ChannelNacl() override;
// Channel implementation.