| Index: third_party/WebKit/Source/platform/WebThreadSupportingGC.cpp
|
| diff --git a/third_party/WebKit/Source/platform/WebThreadSupportingGC.cpp b/third_party/WebKit/Source/platform/WebThreadSupportingGC.cpp
|
| index 3e034ccdfd4a3aafbc9640df67d73f441441004c..217a7e5fce086df16bc48987c8a5830175a5c6c5 100644
|
| --- a/third_party/WebKit/Source/platform/WebThreadSupportingGC.cpp
|
| +++ b/third_party/WebKit/Source/platform/WebThreadSupportingGC.cpp
|
| @@ -29,8 +29,8 @@ WebThreadSupportingGC::WebThreadSupportingGC(
|
| WebThread* thread,
|
| BlinkGC::ThreadHeapMode threadHeapMode)
|
| : m_thread(thread), m_threadHeapMode(threadHeapMode) {
|
| -#if ENABLE(ASSERT)
|
| - ASSERT(!name || !thread);
|
| + DCHECK(!name || !thread);
|
| +#if DCHECK_IS_ON()
|
| // We call this regardless of whether an existing thread is given or not,
|
| // as it means that blink is going to run with more than one thread.
|
| WTF::willCreateThread();
|
|
|