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

Side by Side Diff: base/timer/hi_res_timer_manager_win.cc

Issue 1446363003: Deleted OS_WIN and all Windows specific files from base. (Closed) Base URL: https://github.com/domokit/mojo.git@base_tests
Patch Set: Created 5 years, 1 month 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/timer/hi_res_timer_manager.h"
6
7 #include "base/power_monitor/power_monitor.h"
8 #include "base/time/time.h"
9
10 namespace base {
11
12 HighResolutionTimerManager::HighResolutionTimerManager()
13 : hi_res_clock_available_(false) {
14 base::PowerMonitor* power_monitor = base::PowerMonitor::Get();
15 DCHECK(power_monitor != NULL);
16 power_monitor->AddObserver(this);
17 UseHiResClock(!power_monitor->IsOnBatteryPower());
18 }
19
20 HighResolutionTimerManager::~HighResolutionTimerManager() {
21 base::PowerMonitor::Get()->RemoveObserver(this);
22 UseHiResClock(false);
23 }
24
25 void HighResolutionTimerManager::OnPowerStateChange(bool on_battery_power) {
26 UseHiResClock(!on_battery_power);
27 }
28
29 void HighResolutionTimerManager::UseHiResClock(bool use) {
30 if (use == hi_res_clock_available_)
31 return;
32 hi_res_clock_available_ = use;
33 base::Time::EnableHighResolutionTimer(use);
34 }
35
36 } // namespace base
OLDNEW
« no previous file with comments | « base/timer/hi_res_timer_manager_unittest.cc ('k') | base/trace_event/etw_manifest/chrome_events_win.man » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698