| 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_));
|
|
|