| Index: third_party/WebKit/Source/core/dom/MessageChannel.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/MessageChannel.cpp b/third_party/WebKit/Source/core/dom/MessageChannel.cpp
|
| index c6bde2bb56438a4c116d22f36a714bfe6b5c8638..efcbc1e2509d3cd9944f21c74302e6b490c780de 100644
|
| --- a/third_party/WebKit/Source/core/dom/MessageChannel.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/MessageChannel.cpp
|
| @@ -37,7 +37,8 @@ static void createChannel(MessagePort* port1, MessagePort* port2)
|
| WebMessagePortChannel* channel1;
|
| WebMessagePortChannel* channel2;
|
| Platform::current()->createMessageChannel(&channel1, &channel2);
|
| - ASSERT(channel1 && channel2);
|
| + DCHECK(channel1);
|
| + DCHECK(channel2);
|
|
|
| // Now entangle the proxies with the appropriate local ports.
|
| port1->entangle(adoptPtr(channel2));
|
|
|