| Index: third_party/WebKit/Source/platform/scheduler/test/fake_web_task_runner.cc
|
| diff --git a/third_party/WebKit/Source/platform/scheduler/test/fake_web_task_runner.cc b/third_party/WebKit/Source/platform/scheduler/test/fake_web_task_runner.cc
|
| index 36536c6d40370178f54fe69b0c0cd8a57d6a43f3..3c0747da5d93c132d0d17432c4940351fbc20e91 100644
|
| --- a/third_party/WebKit/Source/platform/scheduler/test/fake_web_task_runner.cc
|
| +++ b/third_party/WebKit/Source/platform/scheduler/test/fake_web_task_runner.cc
|
| @@ -48,6 +48,11 @@ void FakeWebTaskRunner::postDelayedTask(const WebTraceLocation&,
|
| data_->task_.reset(task);
|
| }
|
|
|
| +void FakeWebTaskRunner::postTask(const WebTraceLocation&,
|
| + const base::Closure& closure) {
|
| + NOTREACHED();
|
| +}
|
| +
|
| void FakeWebTaskRunner::postDelayedTask(const WebTraceLocation&,
|
| const base::Closure& closure,
|
| double) {
|
|
|