Index: content/renderer/renderer_webidbindex_impl.cc |
diff --git a/content/renderer/renderer_webidbindex_impl.cc b/content/renderer/renderer_webidbindex_impl.cc |
index dd8e3343a49efe695d4dfb5416152e59066099bb..5d818300daccb31afa185e979e86c3ec33978a37 100644 |
--- a/content/renderer/renderer_webidbindex_impl.cc |
+++ b/content/renderer/renderer_webidbindex_impl.cc |
@@ -64,7 +64,7 @@ void RendererWebIDBIndexImpl::openObjectCursor( |
const WebKit::WebIDBTransaction& transaction, |
WebExceptionCode& ec) { |
IndexedDBDispatcher* dispatcher = |
- RenderThreadImpl::current()->indexed_db_dispatcher(); |
+ ChildThread::current()->indexed_db_dispatcher(); |
dispatcher->RequestIDBIndexOpenObjectCursor( |
range, direction, callbacks, idb_index_id_, transaction, &ec); |
} |
@@ -76,7 +76,7 @@ void RendererWebIDBIndexImpl::openKeyCursor( |
const WebKit::WebIDBTransaction& transaction, |
WebExceptionCode& ec) { |
IndexedDBDispatcher* dispatcher = |
- RenderThreadImpl::current()->indexed_db_dispatcher(); |
+ ChildThread::current()->indexed_db_dispatcher(); |
dispatcher->RequestIDBIndexOpenKeyCursor( |
range, direction, callbacks, idb_index_id_, transaction, &ec); |
} |
@@ -87,7 +87,7 @@ void RendererWebIDBIndexImpl::getObject( |
const WebKit::WebIDBTransaction& transaction, |
WebExceptionCode& ec) { |
IndexedDBDispatcher* dispatcher = |
- RenderThreadImpl::current()->indexed_db_dispatcher(); |
+ ChildThread::current()->indexed_db_dispatcher(); |
dispatcher->RequestIDBIndexGetObject( |
IndexedDBKey(key), callbacks, idb_index_id_, transaction, &ec); |
} |
@@ -98,7 +98,7 @@ void RendererWebIDBIndexImpl::getKey( |
const WebKit::WebIDBTransaction& transaction, |
WebExceptionCode& ec) { |
IndexedDBDispatcher* dispatcher = |
- RenderThreadImpl::current()->indexed_db_dispatcher(); |
+ ChildThread::current()->indexed_db_dispatcher(); |
dispatcher->RequestIDBIndexGetKey( |
IndexedDBKey(key), callbacks, idb_index_id_, transaction, &ec); |
} |