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

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

Issue 2082343002: Remove calls to deprecated MessageLoop methods in content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CR Created 4 years, 6 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_transaction_unittest.cc
diff --git a/content/browser/indexed_db/indexed_db_transaction_unittest.cc b/content/browser/indexed_db/indexed_db_transaction_unittest.cc
index 170ccd23a3b2abde4d3376f139615a0107827ec8..632b1ee6427baa78c75bf17a88195b003afaeb62 100644
--- a/content/browser/indexed_db/indexed_db_transaction_unittest.cc
+++ b/content/browser/indexed_db/indexed_db_transaction_unittest.cc
@@ -54,7 +54,7 @@ class IndexedDBTransactionTest : public testing::Test {
ASSERT_TRUE(s.ok());
}
- void RunPostedTasks() { message_loop_.RunUntilIdle(); }
+ void RunPostedTasks() { base::RunLoop().RunUntilIdle(); }
void DummyOperation(IndexedDBTransaction* transaction) {}
void AbortableOperation(AbortObserver* observer,
IndexedDBTransaction* transaction) {

Powered by Google App Engine
This is Rietveld 408576698