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

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: sync to ToT 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
« no previous file with comments | « content/shell/shell_resource_context.cc ('k') | content/worker/worker_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/worker/worker_thread.h
diff --git a/content/worker/worker_thread.h b/content/worker/worker_thread.h
index d1fb4abd40ce0cf7b915891fac8006c2056d768c..841642e8142944189d9b62501e6b1df4ab7768b6 100644
--- a/content/worker/worker_thread.h
+++ b/content/worker/worker_thread.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -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_;
« no previous file with comments | « content/shell/shell_resource_context.cc ('k') | content/worker/worker_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698