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

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

Issue 2506773002: [IndexedDB] Integrating failures and corruption with transaction (Closed)
Patch Set: removed extra log statements 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/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 e3254527cdb01626e92e3de95568d588d3469d71..7b322ef8f427a7d0045e1647fc5d74a8fb2920cf 100644
--- a/content/browser/indexed_db/indexed_db_database_unittest.cc
+++ b/content/browser/indexed_db/indexed_db_database_unittest.cc
@@ -333,7 +333,8 @@ TEST_F(IndexedDBDatabaseTest, ConnectionRequestsNoLongerValid) {
EXPECT_EQ(db->PendingOpenDeleteCount(), 0UL);
}
-void DummyOperation(IndexedDBTransaction* transaction) {
+leveldb::Status DummyOperation(IndexedDBTransaction* transaction) {
+ return leveldb::Status::OK();
}
class IndexedDBDatabaseOperationTest : public testing::Test {
« no previous file with comments | « content/browser/indexed_db/indexed_db_database.cc ('k') | content/browser/indexed_db/indexed_db_factory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698