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

Unified Diff: content/public/test/test_utils.cc

Issue 2740783003: Revert "Revert of Reland: Switch WindowedNotificationObserver to use base::RunLoop. (patchset #3 id… (Closed)
Patch Set: Fix comment. Created 3 years, 8 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
« no previous file with comments | « content/public/test/test_utils.h ('k') | extensions/test/extension_test_notification_observer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/test_utils.cc
diff --git a/content/public/test/test_utils.cc b/content/public/test/test_utils.cc
index 4fb9c669fa6dcf3bb7f75afc1fdf9effb173e5b4..4cc2bbbce8fdf89e4c09910fae5a1e35db7594d4 100644
--- a/content/public/test/test_utils.cc
+++ b/content/public/test/test_utils.cc
@@ -304,8 +304,8 @@ void WindowedNotificationObserver::Wait() {
return;
running_ = true;
- message_loop_runner_ = new MessageLoopRunner;
- message_loop_runner_->Run();
+ run_loop_.reset(new base::RunLoop);
+ run_loop_->Run();
EXPECT_TRUE(seen_);
}
@@ -322,7 +322,7 @@ void WindowedNotificationObserver::Observe(
if (!running_)
return;
- message_loop_runner_->Quit();
+ run_loop_->Quit();
running_ = false;
}
« no previous file with comments | « content/public/test/test_utils.h ('k') | extensions/test/extension_test_notification_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698