| Index: third_party/WebKit/Source/platform/WebTaskRunnerTest.cpp
|
| diff --git a/third_party/WebKit/Source/platform/WebTaskRunnerTest.cpp b/third_party/WebKit/Source/platform/WebTaskRunnerTest.cpp
|
| index bcd7da6df55734580831d78ca7b1e92a3a27cc8a..8010a7bf3ae00bf35e1d87ae8b70895354c18292 100644
|
| --- a/third_party/WebKit/Source/platform/WebTaskRunnerTest.cpp
|
| +++ b/third_party/WebKit/Source/platform/WebTaskRunnerTest.cpp
|
| @@ -53,7 +53,8 @@ TEST(WebTaskRunnerTest, PostCancellableTaskTest) {
|
|
|
| count = 0;
|
| handle = task_runner->PostDelayedCancellableTask(
|
| - BLINK_FROM_HERE, WTF::Bind(&Increment, WTF::Unretained(&count)), 1);
|
| + BLINK_FROM_HERE, WTF::Bind(&Increment, WTF::Unretained(&count)),
|
| + TimeDelta::FromMilliseconds(1));
|
| EXPECT_EQ(0, count);
|
| EXPECT_TRUE(handle.IsActive());
|
| task_runner->RunUntilIdle();
|
|
|