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

Unified Diff: content/browser/browser_main_loop.h

Issue 17518004: Move IndexedDB from WEBKIT_DEPRECATED to dedicated thread (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing files Created 7 years, 6 months 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
Index: content/browser/browser_main_loop.h
diff --git a/content/browser/browser_main_loop.h b/content/browser/browser_main_loop.h
index 30442a674d919de9d99609777e23f46470368527..0a17ae599df4aa1667985a584958258fa140647d 100644
--- a/content/browser/browser_main_loop.h
+++ b/content/browser/browser_main_loop.h
@@ -32,6 +32,7 @@ class BrowserMainParts;
class BrowserOnlineStateObserver;
class BrowserShutdownImpl;
class BrowserThreadImpl;
+class IndexedDBThread;
class MediaStreamManager;
class ResourceDispatcherHostImpl;
class SpeechRecognitionManagerImpl;
@@ -75,6 +76,7 @@ class BrowserMainLoop {
// Can be called on any thread.
static media::AudioManager* GetAudioManager();
static AudioMirroringManager* GetAudioMirroringManager();
+ static IndexedDBThread* GetIndexedDBThread();
static MediaStreamManager* GetMediaStreamManager();
private:
@@ -128,6 +130,7 @@ class BrowserMainLoop {
scoped_ptr<BrowserProcessSubThread> db_thread_;
#if !defined(OS_IOS)
scoped_ptr<WebKitThread> webkit_thread_;
+ scoped_ptr<IndexedDBThread> indexed_db_thread_;
#endif
scoped_ptr<BrowserProcessSubThread> file_user_blocking_thread_;
scoped_ptr<BrowserProcessSubThread> file_thread_;

Powered by Google App Engine
This is Rietveld 408576698