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

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

Issue 15564008: Migrate the IndexedDB backend from Blink to Chromium (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update to ToT again Created 7 years, 7 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 9a7cc10d27d316862801e49e70e92d4ad4f6bf2f..a57193d5629c46146e8624f94472efd071279805 100644
--- a/content/browser/in_process_webkit/indexed_db_database_callbacks.cc
+++ b/content/browser/in_process_webkit/indexed_db_database_callbacks.cc
@@ -4,6 +4,7 @@
#include "content/browser/in_process_webkit/indexed_db_database_callbacks.h"
+#include "base/memory/scoped_vector.h"
#include "content/browser/in_process_webkit/indexed_db_dispatcher_host.h"
#include "content/common/indexed_db/indexed_db_messages.h"
@@ -15,46 +16,39 @@ IndexedDBDatabaseCallbacks::IndexedDBDatabaseCallbacks(
int ipc_database_callbacks_id)
: dispatcher_host_(dispatcher_host),
ipc_thread_id_(ipc_thread_id),
- ipc_database_callbacks_id_(ipc_database_callbacks_id) {
-}
+ ipc_database_callbacks_id_(ipc_database_callbacks_id) {}
-IndexedDBDatabaseCallbacks::~IndexedDBDatabaseCallbacks() {
-}
+IndexedDBDatabaseCallbacks::~IndexedDBDatabaseCallbacks() {}
void IndexedDBDatabaseCallbacks::onForcedClose() {
- dispatcher_host_->Send(
- new IndexedDBMsg_DatabaseCallbacksForcedClose(
- ipc_thread_id_,
- ipc_database_callbacks_id_));
+ dispatcher_host_->Send(new IndexedDBMsg_DatabaseCallbacksForcedClose(
+ ipc_thread_id_, ipc_database_callbacks_id_));
}
void IndexedDBDatabaseCallbacks::onVersionChange(long long old_version,
long long new_version) {
- dispatcher_host_->Send(
- new IndexedDBMsg_DatabaseCallbacksIntVersionChange(
- ipc_thread_id_,
- ipc_database_callbacks_id_,
- old_version,
- new_version));
+ dispatcher_host_->Send(new IndexedDBMsg_DatabaseCallbacksIntVersionChange(
+ ipc_thread_id_, ipc_database_callbacks_id_, old_version, new_version));
}
void IndexedDBDatabaseCallbacks::onAbort(
long long host_transaction_id,
const WebKit::WebIDBDatabaseError& error) {
- dispatcher_host_->FinishTransaction(host_transaction_id, false);
- dispatcher_host_->Send(
- new IndexedDBMsg_DatabaseCallbacksAbort(
- ipc_thread_id_, ipc_database_callbacks_id_,
- dispatcher_host_->RendererTransactionId(host_transaction_id),
- error.code(), error.message()));
+ dispatcher_host_->FinishTransaction(host_transaction_id, false);
+ dispatcher_host_->Send(new IndexedDBMsg_DatabaseCallbacksAbort(
+ ipc_thread_id_,
+ ipc_database_callbacks_id_,
+ dispatcher_host_->RendererTransactionId(host_transaction_id),
+ error.code(),
+ error.message()));
}
void IndexedDBDatabaseCallbacks::onComplete(long long host_transaction_id) {
- dispatcher_host_->FinishTransaction(host_transaction_id, true);
- dispatcher_host_->Send(
- new IndexedDBMsg_DatabaseCallbacksComplete(
- ipc_thread_id_, ipc_database_callbacks_id_,
- dispatcher_host_->RendererTransactionId(host_transaction_id)));
+ dispatcher_host_->FinishTransaction(host_transaction_id, true);
+ dispatcher_host_->Send(new IndexedDBMsg_DatabaseCallbacksComplete(
+ ipc_thread_id_,
+ ipc_database_callbacks_id_,
+ dispatcher_host_->RendererTransactionId(host_transaction_id)));
}
} // namespace content
« no previous file with comments | « android_webview/tools/third_party_files_whitelist.txt ('k') | content/browser/in_process_webkit/indexed_db_dispatcher_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698