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

Unified Diff: content/browser/in_process_webkit/indexed_db_database_callbacks.cc

Issue 10803062: Chrome-side intVersion changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more plumbing Created 8 years, 5 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_database_callbacks.cc
diff --git a/content/browser/in_process_webkit/indexed_db_database_callbacks.cc b/content/browser/in_process_webkit/indexed_db_database_callbacks.cc
index 1305be994036a39338c35470c79082d31439f6a6..6c6f3a8cb1eb3d4e390dc8bf70e4097e1e6fa946 100644
--- a/content/browser/in_process_webkit/indexed_db_database_callbacks.cc
+++ b/content/browser/in_process_webkit/indexed_db_database_callbacks.cc
@@ -19,6 +19,15 @@ IndexedDBDatabaseCallbacks::IndexedDBDatabaseCallbacks(
IndexedDBDatabaseCallbacks::~IndexedDBDatabaseCallbacks() {
}
+void IndexedDBDatabaseCallbacks::onVersionChange(int64_t current_version,
+ int64_t requested_version) {
+ dispatcher_host_->Send(
+ new IndexedDBMsg_DatabaseCallbacksIntVersionChange(thread_id_,
+ database_id_,
+ current_version,
+ requested_version));
+}
+
void IndexedDBDatabaseCallbacks::onVersionChange(
const WebKit::WebString& requested_version) {
dispatcher_host_->Send(

Powered by Google App Engine
This is Rietveld 408576698