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

Unified Diff: content/worker/worker_thread.cc

Issue 11773005: Call new WebKit::setIDBFactory method to initialize Indexed DB support (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 12 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/renderer/render_thread_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/worker/worker_thread.cc
===================================================================
--- content/worker/worker_thread.cc (revision 175144)
+++ content/worker/worker_thread.cc (working copy)
@@ -18,6 +18,7 @@
#include "ipc/ipc_sync_channel.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebBlobRegistry.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebDatabase.h"
+#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBFactory.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h"
#include "webkit/glue/webkit_glue.h"
@@ -33,6 +34,8 @@
lazy_tls.Pointer()->Set(this);
webkit_platform_support_.reset(new WorkerWebKitPlatformSupportImpl);
WebKit::initialize(webkit_platform_support_.get());
+ WebKit::setIDBFactory(
+ webkit_platform_support_.get()->idbFactory());
appcache_dispatcher_.reset(new AppCacheDispatcher(this));
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698