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

Side by Side Diff: ash/system/power/video_activity_notifier.cc

Issue 2729363002: chromeos: Move files in //ash/common to //ash, part 3 (Closed)
Patch Set: Created 3 years, 9 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 unified diff | Download patch
« no previous file with comments | « ash/system/power/tray_power.cc ('k') | ash/system/rotation/tray_rotation_lock.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/system/power/video_activity_notifier.h" 5 #include "ash/system/power/video_activity_notifier.h"
6 6
7 #include "ash/common/session/session_state_delegate.h" 7 #include "ash/session/session_state_delegate.h"
8 #include "ash/common/wm_shell.h"
9 #include "ash/shell.h" 8 #include "ash/shell.h"
9 #include "ash/wm_shell.h"
10 #include "chromeos/dbus/dbus_thread_manager.h" 10 #include "chromeos/dbus/dbus_thread_manager.h"
11 #include "chromeos/dbus/power_manager_client.h" 11 #include "chromeos/dbus/power_manager_client.h"
12 12
13 namespace ash { 13 namespace ash {
14 namespace { 14 namespace {
15 15
16 // Minimum number of seconds between repeated notifications of the same state. 16 // Minimum number of seconds between repeated notifications of the same state.
17 // This should be less than powerd's timeout for determining whether video is 17 // This should be less than powerd's timeout for determining whether video is
18 // still active for the purposes of controlling the keyboard backlight. 18 // still active for the purposes of controlling the keyboard backlight.
19 const int kNotifyIntervalSec = 5; 19 const int kNotifyIntervalSec = 5;
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 void VideoActivityNotifier::MaybeNotifyPowerManager() { 74 void VideoActivityNotifier::MaybeNotifyPowerManager() {
75 if (should_notify_power_manager()) { 75 if (should_notify_power_manager()) {
76 chromeos::DBusThreadManager::Get() 76 chromeos::DBusThreadManager::Get()
77 ->GetPowerManagerClient() 77 ->GetPowerManagerClient()
78 ->NotifyVideoActivity(video_state_ == 78 ->NotifyVideoActivity(video_state_ ==
79 VideoDetector::State::PLAYING_FULLSCREEN); 79 VideoDetector::State::PLAYING_FULLSCREEN);
80 } 80 }
81 } 81 }
82 82
83 } // namespace ash 83 } // namespace ash
OLDNEW
« no previous file with comments | « ash/system/power/tray_power.cc ('k') | ash/system/rotation/tray_rotation_lock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698