| Index: third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp
|
| diff --git a/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp b/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp
|
| index b3a86fc11c66bb0e3026238ec6b8e99065777ffe..d8f61e15c73d743d8b46d7301e4e2eb2695bef4c 100644
|
| --- a/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp
|
| @@ -42,7 +42,7 @@ namespace blink {
|
|
|
| PassOwnPtr<InProcessWorkerObjectProxy> InProcessWorkerObjectProxy::create(InProcessWorkerMessagingProxy* messagingProxy)
|
| {
|
| - ASSERT(messagingProxy);
|
| + DCHECK(messagingProxy);
|
| return adoptPtr(new InProcessWorkerObjectProxy(messagingProxy));
|
| }
|
|
|
| @@ -108,7 +108,7 @@ InProcessWorkerObjectProxy::InProcessWorkerObjectProxy(InProcessWorkerMessagingP
|
|
|
| ExecutionContext* InProcessWorkerObjectProxy::getExecutionContext()
|
| {
|
| - ASSERT(m_messagingProxy);
|
| + DCHECK(m_messagingProxy);
|
| return m_messagingProxy->getExecutionContext();
|
| }
|
|
|
|
|