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

Unified Diff: content/common/indexed_db/proxy_webidbfactory_impl.cc

Issue 10916318: IndexedDB: Remove unused two-phase-open methods following WK90411 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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/common/indexed_db/proxy_webidbfactory_impl.cc
diff --git a/content/common/indexed_db/proxy_webidbfactory_impl.cc b/content/common/indexed_db/proxy_webidbfactory_impl.cc
index 3e401d6c65eda078b624a10e82cda3055805ea2c..a9cbc07cb05ce85d190acc4730ad95a2eff41446 100644
--- a/content/common/indexed_db/proxy_webidbfactory_impl.cc
+++ b/content/common/indexed_db/proxy_webidbfactory_impl.cc
@@ -34,22 +34,6 @@ void RendererWebIDBFactoryImpl::getDatabaseNames(
callbacks, origin.databaseIdentifier(), web_frame);
}
-// TODO(jsbell): Remove this overload when WK90411 rolls.
-void RendererWebIDBFactoryImpl::open(
- const WebString& name,
- long long version,
- WebIDBCallbacks* callbacks,
- const WebSecurityOrigin& origin,
- WebFrame* web_frame,
- const WebString& data_dir) {
- // Don't send the data_dir. We know what we want on the Browser side of
- // things.
- IndexedDBDispatcher* dispatcher =
- IndexedDBDispatcher::ThreadSpecificInstance();
- dispatcher->RequestIDBFactoryOpen(
- name, version, callbacks, origin.databaseIdentifier(), web_frame);
-}
-
void RendererWebIDBFactoryImpl::open(
const WebString& name,
long long version,
« no previous file with comments | « content/common/indexed_db/proxy_webidbfactory_impl.h ('k') | webkit/support/test_webkit_platform_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698