| Index: content/child/webkitplatformsupport_child_impl.cc
|
| diff --git a/content/child/webkitplatformsupport_child_impl.cc b/content/child/webkitplatformsupport_child_impl.cc
|
| index 795c17743144a121e1626ea41f846b887cb46850..9ff52ebff9de65605720e844ec970924b80949a6 100644
|
| --- a/content/child/webkitplatformsupport_child_impl.cc
|
| +++ b/content/child/webkitplatformsupport_child_impl.cc
|
| @@ -8,11 +8,11 @@
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/synchronization/waitable_event.h"
|
| #include "content/child/web_discardable_memory_impl.h"
|
| +#include "content/child/worker_task_runner.h"
|
| #include "third_party/WebKit/public/platform/WebWaitableEvent.h"
|
| #include "third_party/WebKit/public/web/WebInputEvent.h"
|
| #include "webkit/child/fling_curve_configuration.h"
|
| #include "webkit/child/webthread_impl.h"
|
| -#include "webkit/child/worker_task_runner.h"
|
|
|
| #if defined(OS_ANDROID)
|
| #include "webkit/child/fling_animator_impl_android.h"
|
| @@ -120,15 +120,13 @@ blink::WebWaitableEvent* WebKitPlatformSupportChildImpl::waitMultipleEvents(
|
|
|
| void WebKitPlatformSupportChildImpl::didStartWorkerRunLoop(
|
| const blink::WebWorkerRunLoop& runLoop) {
|
| - webkit_glue::WorkerTaskRunner* worker_task_runner =
|
| - webkit_glue::WorkerTaskRunner::Instance();
|
| + WorkerTaskRunner* worker_task_runner = WorkerTaskRunner::Instance();
|
| worker_task_runner->OnWorkerRunLoopStarted(runLoop);
|
| }
|
|
|
| void WebKitPlatformSupportChildImpl::didStopWorkerRunLoop(
|
| const blink::WebWorkerRunLoop& runLoop) {
|
| - webkit_glue::WorkerTaskRunner* worker_task_runner =
|
| - webkit_glue::WorkerTaskRunner::Instance();
|
| + WorkerTaskRunner* worker_task_runner = WorkerTaskRunner::Instance();
|
| worker_task_runner->OnWorkerRunLoopStopped(runLoop);
|
| }
|
|
|
|
|