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

Unified Diff: chrome/browser/in_process_webkit/indexed_db_callbacks.cc

Issue 5680007: Make IndexedDBDispatcherHost be a message filter and move its messages into a... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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: chrome/browser/in_process_webkit/indexed_db_callbacks.cc
===================================================================
--- chrome/browser/in_process_webkit/indexed_db_callbacks.cc (revision 69028)
+++ chrome/browser/in_process_webkit/indexed_db_callbacks.cc (working copy)
@@ -23,21 +23,21 @@
IndexedDBTransactionCallbacks::~IndexedDBTransactionCallbacks() {}
void IndexedDBCallbacksBase::onError(const WebKit::WebIDBDatabaseError& error) {
- dispatcher_host_->Send(new ViewMsg_IDBCallbacksError(
+ dispatcher_host_->Send(new IndexedDBMsg_CallbacksError(
response_id_, error.code(), error.message()));
}
void IndexedDBTransactionCallbacks::onAbort() {
dispatcher_host_->Send(
- new ViewMsg_IDBTransactionCallbacksAbort(transaction_id_));
+ new IndexedDBMsg_TransactionCallbacksAbort(transaction_id_));
}
void IndexedDBTransactionCallbacks::onComplete() {
dispatcher_host_->Send(
- new ViewMsg_IDBTransactionCallbacksComplete(transaction_id_));
+ new IndexedDBMsg_TransactionCallbacksComplete(transaction_id_));
}
void IndexedDBTransactionCallbacks::onTimeout() {
dispatcher_host_->Send(
- new ViewMsg_IDBTransactionCallbacksTimeout(transaction_id_));
+ new IndexedDBMsg_TransactionCallbacksTimeout(transaction_id_));
}
« no previous file with comments | « chrome/browser/in_process_webkit/indexed_db_callbacks.h ('k') | chrome/browser/in_process_webkit/indexed_db_dispatcher_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698