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

Unified Diff: content/worker/worker_webkitplatformsupport_impl.h

Issue 9375024: Get IPC working for Indexed DB in shared workers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix build 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_webkitplatformsupport_impl.h
diff --git a/content/worker/worker_webkitplatformsupport_impl.h b/content/worker/worker_webkitplatformsupport_impl.h
index 226f9147fe290389fe8a3bd1789757658aa0fa2a..69aea478e31e880592ee1304cd1c8c004a888440 100644
--- a/content/worker/worker_webkitplatformsupport_impl.h
+++ b/content/worker/worker_webkitplatformsupport_impl.h
@@ -63,6 +63,8 @@ class WorkerWebKitPlatformSupportImpl
virtual WebKit::WebBlobRegistry* blobRegistry();
+ virtual WebKit::WebIDBFactory* idbFactory() OVERRIDE;
+
// WebMimeRegistry methods:
virtual WebKit::WebMimeRegistry::SupportsType supportsMIMEType(
const WebKit::WebString&);
@@ -89,6 +91,7 @@ class WorkerWebKitPlatformSupportImpl
scoped_ptr<WebKit::WebBlobRegistry> blob_registry_;
scoped_ptr<WebFileSystemImpl> web_file_system_;
+ scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_;
};
#endif // CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698