Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Unified Diff: content/renderer/render_thread_impl.h

Issue 8747002: Dispatch IndexedDB IPC messages to worker threads (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove OVERRIDE from dtor Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/indexed_db_message_filter.cc ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_thread_impl.h
diff --git a/content/renderer/render_thread_impl.h b/content/renderer/render_thread_impl.h
index 683bc6b9b312ca31f2581ee8caab2b439bb5b602..1a4b4eef53ddfab751cdea1ac941c6103eafba9f 100644
--- a/content/renderer/render_thread_impl.h
+++ b/content/renderer/render_thread_impl.h
@@ -134,10 +134,6 @@ class CONTENT_EXPORT RenderThreadImpl : public content::RenderThread,
return appcache_dispatcher_.get();
}
- IndexedDBDispatcher* indexed_db_dispatcher() const {
- return indexed_db_dispatcher_.get();
- }
-
AudioInputMessageFilter* audio_input_message_filter() {
return audio_input_message_filter_.get();
}
@@ -193,7 +189,7 @@ class CONTENT_EXPORT RenderThreadImpl : public content::RenderThread,
// These objects live solely on the render thread.
scoped_ptr<ScopedRunnableMethodFactory<RenderThreadImpl> > task_factory_;
scoped_ptr<AppCacheDispatcher> appcache_dispatcher_;
- scoped_ptr<IndexedDBDispatcher> indexed_db_dispatcher_;
+ scoped_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_;
scoped_ptr<RendererWebKitPlatformSupportImpl> webkit_platform_support_;
scoped_ptr<WebKit::WebStorageEventDispatcher> dom_storage_event_dispatcher_;
« no previous file with comments | « content/renderer/indexed_db_message_filter.cc ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698