| Index: content/child/worker_task_runner.cc
|
| diff --git a/content/child/worker_task_runner.cc b/content/child/worker_task_runner.cc
|
| index 82410fc48a1b6b48b0b7da87a682d2d548722b7b..17b4e1654b597b5cba72fa03ea3ed76bfbd152df 100644
|
| --- a/content/child/worker_task_runner.cc
|
| +++ b/content/child/worker_task_runner.cc
|
| @@ -14,8 +14,6 @@
|
| #include "base/stl_util.h"
|
| #include "base/thread_task_runner_handle.h"
|
|
|
| -using blink::WebWorkerRunLoop;
|
| -
|
| namespace content {
|
|
|
| namespace {
|
| @@ -90,7 +88,7 @@ void WorkerTaskRunner::RemoveStopObserver(Observer* obs) {
|
| WorkerTaskRunner::~WorkerTaskRunner() {
|
| }
|
|
|
| -void WorkerTaskRunner::OnWorkerRunLoopStarted(const WebWorkerRunLoop& loop) {
|
| +void WorkerTaskRunner::OnWorkerRunLoopStarted() {
|
| DCHECK(!current_tls_.Get());
|
| DCHECK(!base::PlatformThread::CurrentRef().is_null());
|
| current_tls_.Set(new ThreadLocalState());
|
| @@ -101,7 +99,7 @@ void WorkerTaskRunner::OnWorkerRunLoopStarted(const WebWorkerRunLoop& loop) {
|
| CHECK(task_runner_map_[id]);
|
| }
|
|
|
| -void WorkerTaskRunner::OnWorkerRunLoopStopped(const WebWorkerRunLoop& loop) {
|
| +void WorkerTaskRunner::OnWorkerRunLoopStopped() {
|
| DCHECK(current_tls_.Get());
|
| FOR_EACH_OBSERVER(Observer, current_tls_.Get()->stop_observers_,
|
| OnWorkerRunLoopStopped());
|
|
|