| Index: webkit/child/webkitplatformsupport_child_impl.cc
|
| diff --git a/webkit/child/webkitplatformsupport_child_impl.cc b/webkit/child/webkitplatformsupport_child_impl.cc
|
| index 456a5c90566e476f7ff986f653e47808041e9c0b..4e77cce514ac21c090116eb4907d82ed812a4d71 100644
|
| --- a/webkit/child/webkitplatformsupport_child_impl.cc
|
| +++ b/webkit/child/webkitplatformsupport_child_impl.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
|
| #include "webkit/child/fling_curve_configuration.h"
|
| +#include "webkit/child/worker_task_runner.h"
|
|
|
| #if defined(OS_ANDROID)
|
| #include "webkit/child/fling_animator_impl_android.h"
|
| @@ -42,4 +43,16 @@ WebKitPlatformSupportChildImpl::createFlingAnimationCurve(
|
| cumulative_scroll);
|
| }
|
|
|
| +void WebKitPlatformSupportChildImpl::didStartWorkerRunLoop(
|
| + const WebKit::WebWorkerRunLoop& runLoop) {
|
| + WorkerTaskRunner* worker_task_runner = WorkerTaskRunner::Instance();
|
| + worker_task_runner->OnWorkerRunLoopStarted(runLoop);
|
| +}
|
| +
|
| +void WebKitPlatformSupportChildImpl::didStopWorkerRunLoop(
|
| + const WebKit::WebWorkerRunLoop& runLoop) {
|
| + WorkerTaskRunner* worker_task_runner = WorkerTaskRunner::Instance();
|
| + worker_task_runner->OnWorkerRunLoopStopped(runLoop);
|
| +}
|
| +
|
| } // namespace webkit_glue
|
|
|