| Index: third_party/WebKit/Source/platform/testing/UnitTestHelpers.cpp
|
| diff --git a/third_party/WebKit/Source/platform/testing/UnitTestHelpers.cpp b/third_party/WebKit/Source/platform/testing/UnitTestHelpers.cpp
|
| index 84563abeb90d0588e3d2ebf1b9ba6c6bb581cbee..bb0d3bf24f982f519815782146a3b7954f1a0555 100644
|
| --- a/third_party/WebKit/Source/platform/testing/UnitTestHelpers.cpp
|
| +++ b/third_party/WebKit/Source/platform/testing/UnitTestHelpers.cpp
|
| @@ -46,7 +46,7 @@ namespace testing {
|
|
|
| void runPendingTasks()
|
| {
|
| - Platform::current()->currentThread()->getWebTaskRunner()->postTask(BLINK_FROM_HERE, bind(&exitRunLoop));
|
| + Platform::current()->currentThread()->getWebTaskRunner()->postTask(BLINK_FROM_HERE, WTF::bind(&exitRunLoop));
|
|
|
| // We forbid GC in the tasks. Otherwise the registered GCTaskObserver tries
|
| // to run GC with NoHeapPointerOnStack.
|
| @@ -57,7 +57,7 @@ void runPendingTasks()
|
|
|
| void runDelayedTasks(double delayMs)
|
| {
|
| - Platform::current()->currentThread()->getWebTaskRunner()->postDelayedTask(BLINK_FROM_HERE, bind(&exitRunLoop), delayMs);
|
| + Platform::current()->currentThread()->getWebTaskRunner()->postDelayedTask(BLINK_FROM_HERE, WTF::bind(&exitRunLoop), delayMs);
|
| enterRunLoop();
|
| }
|
|
|
|
|