| Index: third_party/WebKit/Source/modules/websockets/WebSocketChannel.cpp
|
| diff --git a/third_party/WebKit/Source/modules/websockets/WebSocketChannel.cpp b/third_party/WebKit/Source/modules/websockets/WebSocketChannel.cpp
|
| index 3cbc754a5646598edc3c1b6c9eef93a4855fad32..428c584531e30c051c1822506251ff49b203c12f 100644
|
| --- a/third_party/WebKit/Source/modules/websockets/WebSocketChannel.cpp
|
| +++ b/third_party/WebKit/Source/modules/websockets/WebSocketChannel.cpp
|
| @@ -44,8 +44,8 @@ namespace blink {
|
|
|
| WebSocketChannel* WebSocketChannel::create(ExecutionContext* context, WebSocketChannelClient* client)
|
| {
|
| - ASSERT(context);
|
| - ASSERT(client);
|
| + DCHECK(context);
|
| + DCHECK(client);
|
|
|
| std::unique_ptr<SourceLocation> location = SourceLocation::capture(context);
|
|
|
|
|