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

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

Issue 18023022: Blob support for IDB [Chromium] (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use ScopedVector and stl_utils for BlobDataHandles. Created 7 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: content/browser/indexed_db/indexed_db_unittest.cc
diff --git a/content/browser/indexed_db/indexed_db_unittest.cc b/content/browser/indexed_db/indexed_db_unittest.cc
index 43613af566979509aa918599e5dd98f0b5ce4b79..5ead5887a10cea50aad5e111d4e07b30f3edbcbe 100644
--- a/content/browser/indexed_db/indexed_db_unittest.cc
+++ b/content/browser/indexed_db/indexed_db_unittest.cc
@@ -240,11 +240,14 @@ TEST_F(IndexedDBTest, ForceCloseOpenDatabasesOnCommitFailure) {
const int64 transaction_id = 1;
factory->Open(ASCIIToUTF16("db"),
IndexedDBDatabaseMetadata::DEFAULT_INT_VERSION,
+ NULL, /* request_context */
transaction_id,
callbacks,
db_callbacks,
kTestOrigin,
- temp_dir.path());
+ temp_dir.path(),
+ 0, /* child_process_id */
+ task_runner_ /* task_runner */);
EXPECT_TRUE(callbacks->connection());

Powered by Google App Engine
This is Rietveld 408576698