| Index: content/child/blink_platform_impl.cc
|
| diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc
|
| index db0ba133288ba57a86822c4526db297f489e3389..bf47f3a270c827ff5a8b1f9432673334257aaef0 100644
|
| --- a/content/child/blink_platform_impl.cc
|
| +++ b/content/child/blink_platform_impl.cc
|
| @@ -39,12 +39,12 @@
|
| #include "content/child/permissions/permission_manager_thread_proxy.h"
|
| #include "content/child/push_messaging/push_dispatcher.h"
|
| #include "content/child/push_messaging/push_provider.h"
|
| +#include "content/child/scheduler/webthread_impl_for_worker.h"
|
| #include "content/child/thread_safe_sender.h"
|
| #include "content/child/web_discardable_memory_impl.h"
|
| #include "content/child/web_gesture_curve_impl.h"
|
| #include "content/child/web_url_loader_impl.h"
|
| #include "content/child/websocket_bridge.h"
|
| -#include "content/child/webthread_impl.h"
|
| #include "content/child/worker_task_runner.h"
|
| #include "content/public/common/content_client.h"
|
| #include "net/base/data_url.h"
|
| @@ -505,7 +505,7 @@ bool BlinkPlatformImpl::isReservedIPAddress(
|
| }
|
|
|
| blink::WebThread* BlinkPlatformImpl::createThread(const char* name) {
|
| - WebThreadImpl* thread = new WebThreadImpl(name);
|
| + WebThreadImplForWorker* thread = new WebThreadImplForWorker(name);
|
| thread->TaskRunner()->PostTask(
|
| FROM_HERE, base::Bind(&BlinkPlatformImpl::UpdateWebThreadTLS,
|
| base::Unretained(this), thread));
|
|
|