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

Unified Diff: content/worker/worker_thread.h

Issue 9375024: Get IPC working for Indexed DB in shared workers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: re-add webframe check Created 8 years, 10 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/worker/worker_thread.h
diff --git a/content/worker/worker_thread.h b/content/worker/worker_thread.h
index d1fb4abd40ce0cf7b915891fac8006c2056d768c..69d0a0a825bedc830d6e05d84b01664912134ed8 100644
--- a/content/worker/worker_thread.h
+++ b/content/worker/worker_thread.h
@@ -12,6 +12,7 @@
class AppCacheDispatcher;
class DBMessageFilter;
+class IndexedDBMessageFilter;
class WebDatabaseObserverImpl;
class WebSharedWorkerStub;
struct WorkerProcessMsg_CreateWorker_Params;
@@ -43,6 +44,7 @@ class WorkerThread : public ChildThread {
scoped_ptr<AppCacheDispatcher> appcache_dispatcher_;
scoped_ptr<WebDatabaseObserverImpl> web_database_observer_impl_;
scoped_refptr<DBMessageFilter> db_message_filter_;
+ scoped_refptr<IndexedDBMessageFilter> indexed_db_message_filter_;
typedef std::set<WebSharedWorkerStub*> WorkerStubsList;
WorkerStubsList worker_stubs_;

Powered by Google App Engine
This is Rietveld 408576698