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

Unified Diff: app/hi_res_timer_manager_win.cc

Issue 3848002: Fix regression where high resolution timers could be activated even under... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: nonono - fix thread safety problem, simplify! Created 10 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: app/hi_res_timer_manager_win.cc
===================================================================
--- app/hi_res_timer_manager_win.cc (revision 62903)
+++ app/hi_res_timer_manager_win.cc (working copy)
@@ -25,5 +25,6 @@
void HighResolutionTimerManager::UseHiResClock(bool use) {
if (use == hi_res_clock_used_)
return;
+ hi_res_clock_used_ = use;
base::Time::EnableHighResolutionTimer(use);
}

Powered by Google App Engine
This is Rietveld 408576698