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

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

Issue 2438233004: Make IndexedDBConnection IDs independent from the IPC database ID. (Closed)
Patch Set: Created 4 years, 2 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/indexed_db/indexed_db_database_callbacks.cc
diff --git a/content/browser/indexed_db/indexed_db_database_callbacks.cc b/content/browser/indexed_db/indexed_db_database_callbacks.cc
index e45a77bbb0c8cf26c5c8687e0a1b7ec3ace5e442..d9aa90af00b717db771ab452b0f5fd32797e6c62 100644
--- a/content/browser/indexed_db/indexed_db_database_callbacks.cc
+++ b/content/browser/indexed_db/indexed_db_database_callbacks.cc
@@ -100,12 +100,11 @@ void IndexedDBDatabaseCallbacks::OnComplete(int64_t host_transaction_id) {
}
void IndexedDBDatabaseCallbacks::OnDatabaseChange(
- int32_t ipc_database_id,
std::unique_ptr<IndexedDBObserverChanges> changes) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(io_helper_);
dispatcher_host_->Send(new IndexedDBMsg_DatabaseCallbacksChanges(
- ipc_thread_id_, ipc_database_id,
+ ipc_thread_id_,
IndexedDBDispatcherHost::ConvertObserverChanges(std::move(changes))));
}
« no previous file with comments | « content/browser/indexed_db/indexed_db_database_callbacks.h ('k') | content/browser/indexed_db/indexed_db_dispatcher_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698