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

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

Issue 12129002: Remove deprecated IPC code for onUpgradeNeeded/onSuccess/metadata (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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_webidbdatabase_impl.cc
diff --git a/content/common/indexed_db/proxy_webidbdatabase_impl.cc b/content/common/indexed_db/proxy_webidbdatabase_impl.cc
index 7394bf3e34003560fcf269466edea554eb26765a..bde27a8ea8404e7accb22bc830dddf529d9c4305 100644
--- a/content/common/indexed_db/proxy_webidbdatabase_impl.cc
+++ b/content/common/indexed_db/proxy_webidbdatabase_impl.cc
@@ -22,7 +22,6 @@ using WebKit::WebIDBCallbacks;
using WebKit::WebIDBDatabaseCallbacks;
using WebKit::WebIDBMetadata;
using WebKit::WebIDBKeyPath;
-using WebKit::WebIDBTransaction;
using WebKit::WebString;
using WebKit::WebVector;
using webkit_glue::WorkerTaskRunner;
@@ -45,14 +44,6 @@ RendererWebIDBDatabaseImpl::~RendererWebIDBDatabaseImpl() {
dispatcher->DatabaseDestroyed(ipc_database_id_);
}
-WebIDBMetadata RendererWebIDBDatabaseImpl::metadata() const {
- IndexedDBDatabaseMetadata idb_metadata;
- IndexedDBDispatcher::Send(
- new IndexedDBHostMsg_DatabaseMetadata(ipc_database_id_, &idb_metadata));
-
- return IndexedDBDispatcher::ConvertMetadata(idb_metadata);
-}
-
void RendererWebIDBDatabaseImpl::createObjectStore(
long long transaction_id,
long long object_store_id,

Powered by Google App Engine
This is Rietveld 408576698