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

Unified Diff: Source/web/WebKit.cpp

Issue 225023020: IDBFactoryBackend -> IndexedDBClient, remove indexeddb/chromium (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: IndexedDB.cpp -> IndexedDBClient.cpp Created 6 years, 8 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: Source/web/WebKit.cpp
diff --git a/Source/web/WebKit.cpp b/Source/web/WebKit.cpp
index 754c02d3b4a8a5ec003bdbcd31814a0add333528..a8075ace7f422ee76d5ae159562d56ee14037432 100644
--- a/Source/web/WebKit.cpp
+++ b/Source/web/WebKit.cpp
@@ -31,7 +31,7 @@
#include "config.h"
#include "WebKit.h"
-#include "IDBFactoryBackendProxy.h"
+#include "IndexedDBClientImpl.h"
#include "RuntimeEnabledFeatures.h"
#include "WebMediaPlayerClientImpl.h"
#include "bindings/v8/V8Binding.h"
@@ -185,7 +185,7 @@ void initializeWithoutV8(Platform* platform)
// this, initializing this lazily probably doesn't buy us much.
WTF::UTF8Encoding();
- WebCore::setIDBFactoryBackendInterfaceCreateFunction(blink::IDBFactoryBackendProxy::create);
+ WebCore::setIndexedDBClientCreateFunction(blink::IndexedDBClientImpl::create);
WebCore::MediaPlayer::setMediaEngineCreateFunction(blink::WebMediaPlayerClientImpl::create);
}

Powered by Google App Engine
This is Rietveld 408576698