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

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

Issue 2472213003: [IndexedDB] Refactoring to remove ref ptrs and host transaction ids. (Closed)
Patch Set: updated unittests Created 4 years, 1 month 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/mock_indexed_db_database_callbacks.cc
diff --git a/content/browser/indexed_db/mock_indexed_db_database_callbacks.cc b/content/browser/indexed_db/mock_indexed_db_database_callbacks.cc
index 1125bdecb3b0d9ff6f19811d66c5c543d18b6790..9cd07ff9061d4d0c37eae3dad91766dc4eb1d7b1 100644
--- a/content/browser/indexed_db/mock_indexed_db_database_callbacks.cc
+++ b/content/browser/indexed_db/mock_indexed_db_database_callbacks.cc
@@ -18,7 +18,7 @@ void MockIndexedDBDatabaseCallbacks::OnForcedClose() {
}
cmumford 2016/11/04 23:33:13 If I'm correct, the only time this is called is as
dmurph 2016/11/07 20:05:23 There's no reason that the callbacks need to modif
void MockIndexedDBDatabaseCallbacks::OnAbort(
- int64_t transaction_id,
+ const IndexedDBTransaction& transaction,
const IndexedDBDatabaseError& error) {
abort_called_ = true;
}

Powered by Google App Engine
This is Rietveld 408576698