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

Unified Diff: content/renderer/renderer_blink_platform_impl.cc

Issue 1963293002: Replacing Indexed DB Chromium IPC with Mojo Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactoring after Passing URLRequestContextGetter. Created 4 years, 4 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/renderer_blink_platform_impl.h ('k') | content/test/test_blink_web_unit_test_support.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/renderer_blink_platform_impl.cc
diff --git a/content/renderer/renderer_blink_platform_impl.cc b/content/renderer/renderer_blink_platform_impl.cc
index 0cdfd84b860aa2141b9548c5541986068d8dcc8a..d7acda451e53cbe1ff1cdd5df6de34e8197fd8b5 100644
--- a/content/renderer/renderer_blink_platform_impl.cc
+++ b/content/renderer/renderer_blink_platform_impl.cc
@@ -26,7 +26,6 @@
#include "content/child/database_util.h"
#include "content/child/file_info_util.h"
#include "content/child/fileapi/webfilesystem_impl.h"
-#include "content/child/indexed_db/webidbfactory_impl.h"
#include "content/child/quota_dispatcher.h"
#include "content/child/quota_message_filter.h"
#include "content/child/simple_webmimeregistry_impl.h"
@@ -149,7 +148,6 @@ using blink::WebFileInfo;
using blink::WebFileSystem;
using blink::WebGamepad;
using blink::WebGamepads;
-using blink::WebIDBFactory;
using blink::WebImageCaptureFrameGrabber;
using blink::WebMIDIAccessor;
using blink::WebMediaPlayer;
@@ -281,7 +279,9 @@ RendererBlinkPlatformImpl::RendererBlinkPlatformImpl(
blob_registry_.reset(new WebBlobRegistryImpl(
RenderThreadImpl::current()->GetIOTaskRunner().get(),
base::ThreadTaskRunnerHandle::Get(), thread_safe_sender_.get()));
+#if 0
web_idb_factory_.reset(new WebIDBFactoryImpl(thread_safe_sender_.get()));
+#endif
web_database_observer_impl_.reset(
new WebDatabaseObserverImpl(sync_message_filter_.get()));
}
@@ -474,13 +474,6 @@ WebStorageNamespace* RendererBlinkPlatformImpl::createLocalStorageNamespace() {
return new WebStorageNamespaceImpl();
}
-
-//------------------------------------------------------------------------------
-
-WebIDBFactory* RendererBlinkPlatformImpl::idbFactory() {
- return web_idb_factory_.get();
-}
-
//------------------------------------------------------------------------------
blink::WebServiceWorkerCacheStorage* RendererBlinkPlatformImpl::cacheStorage(
« no previous file with comments | « content/renderer/renderer_blink_platform_impl.h ('k') | content/test/test_blink_web_unit_test_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698