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

Unified Diff: base/message_loop/message_pump_default.cc

Issue 2433773005: Move OS_WIN specific logic in MessagePumpDefault::Run into waitable_event_win.cc (Closed)
Patch Set: Fixed test issue Created 4 years, 2 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: base/message_loop/message_pump_default.cc
diff --git a/base/message_loop/message_pump_default.cc b/base/message_loop/message_pump_default.cc
index 3449aec8605b32e7eb868573144ecb45929809d7..0fac8b3c9c9adbe7597b59096a30ba2a9ad7e935 100644
--- a/base/message_loop/message_pump_default.cc
+++ b/base/message_loop/message_pump_default.cc
@@ -4,8 +4,6 @@
#include "base/message_loop/message_pump_default.h"
-#include <algorithm>
-
#include "base/logging.h"
#include "base/threading/thread_restrictions.h"
#include "build/build_config.h"
@@ -56,31 +54,7 @@ void MessagePumpDefault::Run(Delegate* delegate) {
} else {
TimeDelta delay = delayed_work_time_ - TimeTicks::Now();
if (delay > TimeDelta()) {
-#if defined(OS_WIN)
- // TODO(stanisc): crbug.com/623223: Consider moving the OS_WIN specific
- // logic into TimedWait implementation in waitable_event_win.cc.
-
- // crbug.com/487724: on Windows, waiting for less than 1 ms results in
- // returning from TimedWait promptly and spinning
- // MessagePumpDefault::Run loop for up to 1 ms - until it is time to
- // run a delayed task. |min_delay| is the minimum possible wait to
- // to avoid the spinning.
- constexpr TimeDelta min_delay = TimeDelta::FromMilliseconds(1);
- do {
- delay = std::max(delay, min_delay);
- if (event_.TimedWait(delay))
- break;
-
- // TimedWait can time out earlier than the specified |delay| on
- // Windows. It doesn't make sense to run the outer loop in that case
- // because there isn't going to be any new work. It is less overhead
- // to just go back to wait.
- // In practice this inner wait loop might have up to 3 iterations.
- delay = delayed_work_time_ - TimeTicks::Now();
- } while (delay > TimeDelta());
-#else
event_.TimedWait(delay);
-#endif
} else {
// It looks like delayed_work_time_ indicates a time in the past, so we
// need to call DoDelayedWork now.
« no previous file with comments | « no previous file | base/synchronization/waitable_event_unittest.cc » ('j') | base/synchronization/waitable_event_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698