| Index: third_party/WebKit/Source/platform/threading/BackgroundTaskRunnerTest.cpp
|
| diff --git a/third_party/WebKit/Source/platform/threading/BackgroundTaskRunnerTest.cpp b/third_party/WebKit/Source/platform/threading/BackgroundTaskRunnerTest.cpp
|
| index 6717d30ae60e1c5b5ad61c178bbf19a075c9efc0..7bf55cb0b4e66d2c611a6b02a576fbc83b2deec3 100644
|
| --- a/third_party/WebKit/Source/platform/threading/BackgroundTaskRunnerTest.cpp
|
| +++ b/third_party/WebKit/Source/platform/threading/BackgroundTaskRunnerTest.cpp
|
| @@ -22,7 +22,7 @@ void PingPongTask(WaitableEvent* doneEvent) {
|
| class BackgroundTaskRunnerTest : public testing::Test {};
|
|
|
| TEST_F(BackgroundTaskRunnerTest, RunShortTaskOnBackgroundThread) {
|
| - std::unique_ptr<WaitableEvent> doneEvent = makeUnique<WaitableEvent>();
|
| + std::unique_ptr<WaitableEvent> doneEvent = WTF::makeUnique<WaitableEvent>();
|
| BackgroundTaskRunner::postOnBackgroundThread(
|
| BLINK_FROM_HERE,
|
| crossThreadBind(&PingPongTask, crossThreadUnretained(doneEvent.get())),
|
| @@ -32,7 +32,7 @@ TEST_F(BackgroundTaskRunnerTest, RunShortTaskOnBackgroundThread) {
|
| }
|
|
|
| TEST_F(BackgroundTaskRunnerTest, RunLongTaskOnBackgroundThread) {
|
| - std::unique_ptr<WaitableEvent> doneEvent = makeUnique<WaitableEvent>();
|
| + std::unique_ptr<WaitableEvent> doneEvent = WTF::makeUnique<WaitableEvent>();
|
| BackgroundTaskRunner::postOnBackgroundThread(
|
| BLINK_FROM_HERE,
|
| crossThreadBind(&PingPongTask, crossThreadUnretained(doneEvent.get())),
|
|
|