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

Unified Diff: content/browser/in_process_webkit/indexed_db_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_callbacks.cc
diff --git a/content/browser/in_process_webkit/indexed_db_callbacks.cc b/content/browser/in_process_webkit/indexed_db_callbacks.cc
index 6a43a10f4229cc0361dcadde35d064a487605c75..7b7175e64f1e36d03bad1635915fb0f3537c0814 100644
--- a/content/browser/in_process_webkit/indexed_db_callbacks.cc
+++ b/content/browser/in_process_webkit/indexed_db_callbacks.cc
@@ -27,6 +27,11 @@ void IndexedDBCallbacksBase::onError(const WebKit::WebIDBDatabaseError& error) {
thread_id_, response_id_, error.code(), error.message()));
}
+void IndexedDBCallbacksBase::onBlocked(int64_t existing_version) {
+ dispatcher_host_->Send(new IndexedDBMsg_CallbacksIntBlocked(
+ thread_id_, response_id_, existing_version));
+}
+
void IndexedDBCallbacksBase::onBlocked() {
dispatcher_host_->Send(new IndexedDBMsg_CallbacksBlocked(thread_id_,
response_id_));

Powered by Google App Engine
This is Rietveld 408576698