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

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

Issue 380993002: Upstream RunBlockingPoolTask(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed. Created 6 years, 5 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') | no next file » | 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 ae45762dab52550be6d1c7008b24dc8b224f5bf0..53d5055dc3c7a1014a6dae02680d7014ad17b6df 100644
--- a/content/public/test/test_utils.cc
+++ b/content/public/test/test_utils.cc
@@ -49,7 +49,7 @@ void RunAllPendingMessageAndSendQuit(BrowserThread::ID thread_id,
BrowserThread::PostTask(thread_id, FROM_HERE, quit_task);
}
-// Class used handle result callbacks for ExecuteScriptAndGetValue.
+// Class used to handle result callbacks for ExecuteScriptAndGetValue.
class ScriptCallback {
public:
ScriptCallback() { }
@@ -70,6 +70,27 @@ void ScriptCallback::ResultCallback(const base::Value* result) {
base::MessageLoop::current()->Quit();
}
+// Monitors if any task is processed by the message loop.
+class TaskObserver : public base::MessageLoop::TaskObserver {
+ public:
+ TaskObserver() : processed_(false) {}
+ virtual ~TaskObserver() {}
+
+ // MessageLoop::TaskObserver overrides.
+ virtual void WillProcessTask(const base::PendingTask& pending_task) OVERRIDE {
+ }
+ virtual void DidProcessTask(const base::PendingTask& pending_task) OVERRIDE {
+ processed_ = true;
+ }
+
+ // Returns true if any task was processed.
+ bool processed() const { return processed_; }
+
+ private:
+ bool processed_;
+ DISALLOW_COPY_AND_ASSIGN(TaskObserver);
+};
+
// Adapter that makes a WindowedNotificationObserver::ConditionTestCallback from
// a WindowedNotificationObserver::ConditionTestCallbackWithoutSourceAndDetails
// by ignoring the notification source and details.
@@ -129,6 +150,20 @@ void RunAllPendingInMessageLoop(BrowserThread::ID thread_id) {
RunThisRunLoop(&run_loop);
}
+void RunAllBlockingPoolTasksUntilIdle() {
+ while (true) {
+ content::BrowserThread::GetBlockingPool()->FlushForTesting();
+
+ TaskObserver task_observer;
+ base::MessageLoop::current()->AddTaskObserver(&task_observer);
+ base::RunLoop().RunUntilIdle();
+ base::MessageLoop::current()->RemoveTaskObserver(&task_observer);
+
+ if (!task_observer.processed())
+ break;
+ }
+}
+
base::Closure GetQuitTaskForRunLoop(base::RunLoop* run_loop) {
return base::Bind(&DeferredQuitRunLoop, run_loop->QuitClosure(),
kNumQuitDeferrals);
« no previous file with comments | « content/public/test/test_utils.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698