Index: ipc/attachment_broker.cc |
diff --git a/ipc/attachment_broker.cc b/ipc/attachment_broker.cc |
index 362fc1f52235b138553dd6d1d33effdd8d7a79a5..7e04bcd645de09dd4a4a32e3cd8f6198c567926d 100644 |
--- a/ipc/attachment_broker.cc |
+++ b/ipc/attachment_broker.cc |
@@ -14,10 +14,7 @@ namespace IPC { |
// static |
void AttachmentBroker::SetGlobal(AttachmentBroker* broker) { |
- // TODO(erikchen): There should be a CHECK here to make sure that |
- // |g_attachment_broker| is nullptr. Right now, this causes problems with |
- // --single_process and similar testing conditions. I'm temporarily removing |
- // this CHECK. http://crbug.com/534539. |
+ CHECK(!g_attachment_broker); |
Tom Sepez
2015/09/25 15:37:34
check vs. DCHECK? your call. I'd expect a DCHECK.
erikchen
2015/09/25 19:27:04
I think this is important to check, even in offici
|
g_attachment_broker = broker; |
} |