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

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

Issue 10829013: Chrome side changes for integer versions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add #include that windows needs 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..141ece503a6ef455e658cda09af8b6c83360faba 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(long long old_version,
+ long long new_version) {
+ dispatcher_host_->Send(
+ new IndexedDBMsg_DatabaseCallbacksIntVersionChange(thread_id_,
+ database_id_,
+ old_version,
+ new_version));
+}
+
void IndexedDBDatabaseCallbacks::onVersionChange(
const WebKit::WebString& requested_version) {
dispatcher_host_->Send(

Powered by Google App Engine
This is Rietveld 408576698