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

Unified Diff: content/browser/in_process_webkit/indexed_db_callbacks.h

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/browser/in_process_webkit/indexed_db_callbacks.h
diff --git a/content/browser/in_process_webkit/indexed_db_callbacks.h b/content/browser/in_process_webkit/indexed_db_callbacks.h
index 4e4c97623216c15e9510c9e85be3745f79a365fa..e80862a259e60f1a54e86ab39ddbc67e22e9e117 100644
--- a/content/browser/in_process_webkit/indexed_db_callbacks.h
+++ b/content/browser/in_process_webkit/indexed_db_callbacks.h
@@ -14,7 +14,6 @@
#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCursor.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBDatabase.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBDatabaseError.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransaction.h"
namespace content {
@@ -59,16 +58,11 @@ class IndexedDBCallbacksDatabase : public IndexedDBCallbacksBase {
int64 host_transaction_id,
const GURL& origin_url);
- virtual void onSuccess(WebKit::WebIDBDatabase* idb_object);
virtual void onSuccess(
WebKit::WebIDBDatabase* idb_object,
const WebKit::WebIDBMetadata& metadata);
virtual void onUpgradeNeeded(
long long old_version,
- WebKit::WebIDBTransaction* transaction,
- WebKit::WebIDBDatabase* database);
- virtual void onUpgradeNeeded(
- long long old_version,
WebKit::WebIDBDatabase* database,
const WebKit::WebIDBMetadata&);

Powered by Google App Engine
This is Rietveld 408576698