diff options
-rw-r--r-- | chrome/browser/in_process_webkit/indexed_db_callbacks.cc | 4 | ||||
-rw-r--r-- | chrome/browser/in_process_webkit/indexed_db_callbacks.h | 1 | ||||
-rw-r--r-- | chrome/common/indexed_db_messages.h | 6 | ||||
-rw-r--r-- | chrome/renderer/indexed_db_dispatcher.cc | 6 | ||||
-rw-r--r-- | chrome/renderer/indexed_db_dispatcher.h | 1 |
5 files changed, 0 insertions, 18 deletions
diff --git a/chrome/browser/in_process_webkit/indexed_db_callbacks.cc b/chrome/browser/in_process_webkit/indexed_db_callbacks.cc index c4584c6a..395919d 100644 --- a/chrome/browser/in_process_webkit/indexed_db_callbacks.cc +++ b/chrome/browser/in_process_webkit/indexed_db_callbacks.cc @@ -29,10 +29,6 @@ void IndexedDBCallbacksBase::onError(const WebKit::WebIDBDatabaseError& error) { response_id_, error.code(), error.message())); } -void IndexedDBCallbacksBase::onBlocked() { - dispatcher_host_->Send(new IndexedDBMsg_CallbacksBlocked(response_id_)); -} - void IndexedDBTransactionCallbacks::onAbort() { dispatcher_host_->Send( new IndexedDBMsg_TransactionCallbacksAbort(transaction_id_)); diff --git a/chrome/browser/in_process_webkit/indexed_db_callbacks.h b/chrome/browser/in_process_webkit/indexed_db_callbacks.h index b900d15..5ac6592 100644 --- a/chrome/browser/in_process_webkit/indexed_db_callbacks.h +++ b/chrome/browser/in_process_webkit/indexed_db_callbacks.h @@ -45,7 +45,6 @@ class IndexedDBCallbacksBase : public WebKit::WebIDBCallbacks { virtual ~IndexedDBCallbacksBase(); virtual void onError(const WebKit::WebIDBDatabaseError& error); - virtual void onBlocked(); protected: IndexedDBDispatcherHost* dispatcher_host() const { diff --git a/chrome/common/indexed_db_messages.h b/chrome/common/indexed_db_messages.h index 002a9c1..6852cfb 100644 --- a/chrome/common/indexed_db_messages.h +++ b/chrome/common/indexed_db_messages.h @@ -250,8 +250,6 @@ IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksError, int32 /* response_id */, int /* code */, string16 /* message */) -IPC_MESSAGE_CONTROL1(IndexedDBMsg_CallbacksBlocked, - int32 /* response_id */) // IDBTransactionCallback message handlers. IPC_MESSAGE_CONTROL1(IndexedDBMsg_TransactionCallbacksAbort, @@ -353,10 +351,6 @@ IPC_SYNC_MESSAGE_CONTROL4_2(IndexedDBHostMsg_DatabaseTransaction, WebKit::WebExceptionCode /* ec */) // WebIDBDatabase::close() message. -IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_DatabaseOpen, - int32 /* idb_database_id */) - -// WebIDBDatabase::close() message. IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_DatabaseClose, int32 /* idb_database_id */) diff --git a/chrome/renderer/indexed_db_dispatcher.cc b/chrome/renderer/indexed_db_dispatcher.cc index f612dc7..8863b9a 100644 --- a/chrome/renderer/indexed_db_dispatcher.cc +++ b/chrome/renderer/indexed_db_dispatcher.cc @@ -52,7 +52,6 @@ bool IndexedDBDispatcher::OnMessageReceived(const IPC::Message& msg) { IPC_MESSAGE_HANDLER(IndexedDBMsg_CallbacksSuccessSerializedScriptValue, OnSuccessSerializedScriptValue) IPC_MESSAGE_HANDLER(IndexedDBMsg_CallbacksError, OnError) - IPC_MESSAGE_HANDLER(IndexedDBMsg_CallbacksBlocked, OnBlocked) IPC_MESSAGE_HANDLER(IndexedDBMsg_TransactionCallbacksAbort, OnAbort) IPC_MESSAGE_HANDLER(IndexedDBMsg_TransactionCallbacksComplete, OnComplete) IPC_MESSAGE_HANDLER(IndexedDBMsg_TransactionCallbacksTimeout, OnTimeout) @@ -378,11 +377,6 @@ void IndexedDBDispatcher::OnSuccessOpenCursor(int32 repsonse_id, pending_callbacks_.Remove(repsonse_id); } -void IndexedDBDispatcher::OnBlocked(int32 response_id) { - WebIDBCallbacks* callbacks = pending_callbacks_.Lookup(response_id); - callbacks->onBlocked(); -} - void IndexedDBDispatcher::OnError(int32 response_id, int code, const string16& message) { WebIDBCallbacks* callbacks = pending_callbacks_.Lookup(response_id); diff --git a/chrome/renderer/indexed_db_dispatcher.h b/chrome/renderer/indexed_db_dispatcher.h index 42bd0e9..f7eac21 100644 --- a/chrome/renderer/indexed_db_dispatcher.h +++ b/chrome/renderer/indexed_db_dispatcher.h @@ -144,7 +144,6 @@ class IndexedDBDispatcher : public IPC::Channel::Listener { void OnSuccessSerializedScriptValue(int32 response_id, const SerializedScriptValue& value); void OnError(int32 response_id, int code, const string16& message); - void OnBlocked(int32 response_id); void OnAbort(int32 transaction_id); void OnComplete(int32 transaction_id); void OnTimeout(int32 transaction_id); |