Index: ipc/attachment_broker.cc |
diff --git a/ipc/attachment_broker.cc b/ipc/attachment_broker.cc |
index 50e3e2d9ae74faae5ab3050cae4ab88ee4207c17..b35c397607b7acf5f9a827d21f499ff4153aa4bd 100644 |
--- a/ipc/attachment_broker.cc |
+++ b/ipc/attachment_broker.cc |
@@ -18,9 +18,6 @@ namespace IPC { |
// static |
void AttachmentBroker::SetGlobal(AttachmentBroker* broker) { |
- CHECK(!g_attachment_broker || !broker) |
- << "Global attachment broker address: " << broker |
- << ". New attachment broker address: " << broker; |
g_attachment_broker = broker; |
} |
@@ -82,6 +79,20 @@ void AttachmentBroker::DeregisterCommunicationChannel(Endpoint* endpoint) { |
NOTREACHED(); |
} |
+void AttachmentBroker::RegisterBrokerCommunicationChannel(Endpoint* endpoint) { |
+ NOTREACHED(); |
+} |
+ |
+void AttachmentBroker::DeregisterBrokerCommunicationChannel( |
+ Endpoint* endpoint) { |
+ NOTREACHED(); |
+} |
+ |
+bool AttachmentBroker::IsPrivilegedBroker() { |
+ NOTREACHED(); |
+ return false; |
+} |
+ |
void AttachmentBroker::HandleReceivedAttachment( |
const scoped_refptr<BrokerableAttachment>& attachment) { |
{ |