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

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

Issue 2449953008: Port messages sent by WebIDBDatabaseImpl to Mojo. (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_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 6cb8f123d443361d74ba84a5e4a698dc751698d1..a13a163190341782f63d4992899764c3c66cc07b 100644
--- a/content/browser/indexed_db/indexed_db_database_unittest.cc
+++ b/content/browser/indexed_db/indexed_db_database_unittest.cc
@@ -511,7 +511,7 @@ TEST_F(IndexedDBDatabaseOperationTest, CreatePutDelete) {
IndexedDBValue value("value1", std::vector<IndexedDBBlobInfo>());
std::vector<std::unique_ptr<storage::BlobDataHandle>> handles;
std::unique_ptr<IndexedDBKey> key(base::MakeUnique<IndexedDBKey>("key"));
- std::vector<IndexedDBDatabase::IndexKeys> index_keys;
+ std::vector<IndexedDBIndexKeys> index_keys;
scoped_refptr<MockIndexedDBCallbacks> request(
new MockIndexedDBCallbacks(false));
db_->Put(transaction_->id(), store_id, &value, &handles, std::move(key),

Powered by Google App Engine
This is Rietveld 408576698