| Index: content/child/indexed_db/indexed_db_dispatcher.cc
|
| diff --git a/content/child/indexed_db/indexed_db_dispatcher.cc b/content/child/indexed_db/indexed_db_dispatcher.cc
|
| index a43b31066927ceab67a9477a96b142ea8b5f2f43..72b91fa18f6c2b6a16fa45494390c80128f2a6ba 100644
|
| --- a/content/child/indexed_db/indexed_db_dispatcher.cc
|
| +++ b/content/child/indexed_db/indexed_db_dispatcher.cc
|
| @@ -32,7 +32,6 @@ using blink::WebIDBMetadata;
|
| using blink::WebString;
|
| using blink::WebVector;
|
| using base::ThreadLocalPointer;
|
| -using webkit_glue::WorkerTaskRunner;
|
|
|
| namespace content {
|
| static base::LazyInstance<ThreadLocalPointer<IndexedDBDispatcher> >::Leaky
|
| @@ -75,7 +74,7 @@ IndexedDBDispatcher* IndexedDBDispatcher::ThreadSpecificInstance(
|
|
|
| IndexedDBDispatcher* dispatcher = new IndexedDBDispatcher(thread_safe_sender);
|
| if (WorkerTaskRunner::Instance()->CurrentWorkerId())
|
| - webkit_glue::WorkerTaskRunner::Instance()->AddStopObserver(dispatcher);
|
| + WorkerTaskRunner::Instance()->AddStopObserver(dispatcher);
|
| return dispatcher;
|
| }
|
|
|
|
|