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

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

Issue 1706413002: Indexed DB: Rename "int version" to "version" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 10 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_factory_unittest.cc
diff --git a/content/browser/indexed_db/indexed_db_factory_unittest.cc b/content/browser/indexed_db/indexed_db_factory_unittest.cc
index 866d3f5f7025dca43121974d5182ab094eebfa9b..946799a5011c28b4ff5f692bcb91805b7c2c326d 100644
--- a/content/browser/indexed_db/indexed_db_factory_unittest.cc
+++ b/content/browser/indexed_db/indexed_db_factory_unittest.cc
@@ -283,11 +283,8 @@ TEST_F(IndexedDBFactoryTest, BackingStoreReleasedOnForcedClose) {
new MockIndexedDBDatabaseCallbacks());
const int64_t transaction_id = 1;
IndexedDBPendingConnection connection(
- callbacks,
- db_callbacks,
- 0, /* child_process_id */
- transaction_id,
- IndexedDBDatabaseMetadata::DEFAULT_INT_VERSION);
+ callbacks, db_callbacks, 0, /* child_process_id */
+ transaction_id, IndexedDBDatabaseMetadata::DEFAULT_VERSION);
factory()->Open(ASCIIToUTF16("db"),
connection,
NULL /* request_context */,
@@ -316,11 +313,8 @@ TEST_F(IndexedDBFactoryTest, BackingStoreReleaseDelayedOnClose) {
new MockIndexedDBDatabaseCallbacks());
const int64_t transaction_id = 1;
IndexedDBPendingConnection connection(
- callbacks,
- db_callbacks,
- 0, /* child_process_id */
- transaction_id,
- IndexedDBDatabaseMetadata::DEFAULT_INT_VERSION);
+ callbacks, db_callbacks, 0, /* child_process_id */
+ transaction_id, IndexedDBDatabaseMetadata::DEFAULT_VERSION);
factory()->Open(ASCIIToUTF16("db"),
connection,
NULL /* request_context */,
@@ -411,11 +405,8 @@ TEST_F(IndexedDBFactoryTest, ForceCloseReleasesBackingStore) {
new MockIndexedDBDatabaseCallbacks());
const int64_t transaction_id = 1;
IndexedDBPendingConnection connection(
- callbacks,
- db_callbacks,
- 0, /* child_process_id */
- transaction_id,
- IndexedDBDatabaseMetadata::DEFAULT_INT_VERSION);
+ callbacks, db_callbacks, 0, /* child_process_id */
+ transaction_id, IndexedDBDatabaseMetadata::DEFAULT_VERSION);
factory()->Open(ASCIIToUTF16("db"),
connection,
NULL /* request_context */,
« no previous file with comments | « content/browser/indexed_db/indexed_db_dispatcher_host.cc ('k') | content/browser/indexed_db/indexed_db_fake_backing_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698