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

Unified Diff: content/browser/indexed_db/indexed_db_database_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_database_unittest.cc
diff --git a/content/browser/indexed_db/indexed_db_database_unittest.cc b/content/browser/indexed_db/indexed_db_database_unittest.cc
index 73a7ec22e2b7b0f3db0d6d6e2f7144463e2a3d22..a3ae171b355cdbf9aca27a46f14482e00717e316 100644
--- a/content/browser/indexed_db/indexed_db_database_unittest.cc
+++ b/content/browser/indexed_db/indexed_db_database_unittest.cc
@@ -59,6 +59,7 @@ TEST(IndexedDBDatabaseTest, ConnectionLifecycle) {
const int64 transaction_id1 = 1;
db->OpenConnection(request1,
callbacks1,
+ 0 /* fake child_process_id */,
transaction_id1,
IndexedDBDatabaseMetadata::DEFAULT_INT_VERSION);
@@ -70,6 +71,7 @@ TEST(IndexedDBDatabaseTest, ConnectionLifecycle) {
const int64 transaction_id2 = 2;
db->OpenConnection(request2,
callbacks2,
+ 0 /* fake child_process_id */,
transaction_id2,
IndexedDBDatabaseMetadata::DEFAULT_INT_VERSION);
@@ -109,6 +111,7 @@ TEST(IndexedDBDatabaseTest, ForcedClose) {
const int64 upgrade_transaction_id = 3;
database->OpenConnection(request,
callbacks,
+ 0 /* fake child_process_id */,
upgrade_transaction_id,
IndexedDBDatabaseMetadata::DEFAULT_INT_VERSION);
EXPECT_EQ(database, request->connection()->database());
@@ -167,6 +170,7 @@ TEST(IndexedDBDatabaseTest, PendingDelete) {
const int64 transaction_id1 = 1;
db->OpenConnection(request1,
callbacks1,
+ 0 /* fake child_process_id */,
transaction_id1,
IndexedDBDatabaseMetadata::DEFAULT_INT_VERSION);

Powered by Google App Engine
This is Rietveld 408576698