| Index: ipc/attachment_broker_unprivileged.cc
|
| diff --git a/ipc/attachment_broker_unprivileged.cc b/ipc/attachment_broker_unprivileged.cc
|
| index bc2eb5a764dbf0dfafa61ea5286bbc04d1b4bb70..b84eea398f4202693c4a3524d8fba7aae8ba72b5 100644
|
| --- a/ipc/attachment_broker_unprivileged.cc
|
| +++ b/ipc/attachment_broker_unprivileged.cc
|
| @@ -4,10 +4,20 @@
|
|
|
| #include "ipc/attachment_broker_unprivileged.h"
|
|
|
| +#include "ipc/ipc_channel.h"
|
| +
|
| namespace IPC {
|
|
|
| AttachmentBrokerUnprivileged::AttachmentBrokerUnprivileged() {}
|
|
|
| AttachmentBrokerUnprivileged::~AttachmentBrokerUnprivileged() {}
|
|
|
| +void AttachmentBrokerUnprivileged::DesignateBrokerCommunicationChannel(
|
| + IPC::Channel* channel) {
|
| + DCHECK(channel);
|
| + DCHECK(!sender_);
|
| + sender_ = channel;
|
| + channel->set_attachment_broker_endpoint(true);
|
| +}
|
| +
|
| } // namespace IPC
|
|
|