| Index: third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
|
| diff --git a/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp b/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
|
| index 637cefd5bcd30fb31e24e56b9b42c9ca3583f9d8..4d4da4f360dd67ebe8e10d95572459991affd919 100644
|
| --- a/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
|
| @@ -83,13 +83,13 @@ DedicatedWorkerThread* DedicatedWorkerGlobalScope::thread() const
|
|
|
| static void countOnDocument(UseCounter::Feature feature, ExecutionContext* context)
|
| {
|
| - ASSERT(context->isDocument());
|
| + DCHECK(context->isDocument());
|
| UseCounter::count(context, feature);
|
| }
|
|
|
| static void countDeprecationOnDocument(UseCounter::Feature feature, ExecutionContext* context)
|
| {
|
| - ASSERT(context->isDocument());
|
| + DCHECK(context->isDocument());
|
| Deprecation::countDeprecation(context, feature);
|
| }
|
|
|
|
|