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

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

Issue 2386683003: IndexedDB: Ignore open/delete requests from terminated renderers. (Closed)
Patch Set: Created 4 years, 3 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_unittest.cc
diff --git a/content/browser/indexed_db/indexed_db_unittest.cc b/content/browser/indexed_db/indexed_db_unittest.cc
index a8b199492bb1b9db8519b148a8f50099b9271899..63e1aaa14e6ab9945f1122024d38494afd9556c4 100644
--- a/content/browser/indexed_db/indexed_db_unittest.cc
+++ b/content/browser/indexed_db/indexed_db_unittest.cc
@@ -144,6 +144,7 @@ class ForceCloseDBCallbacks : public IndexedDBCallbacks {
connection_ = std::move(connection);
idb_context_->ConnectionOpened(origin_, connection_.get());
}
+ bool IsValid() const override { return true; }
IndexedDBConnection* connection() { return connection_.get(); }

Powered by Google App Engine
This is Rietveld 408576698