GN (Android): Fix packaging excess libs when target_cpu is changed
[chromium-blink-merge.git] / ui / chromeos / user_activity_power_manager_notifier.cc
blobfb2f671aaf8db7c3437a50f0dd714f441a918d70
1 // Copyright 2014 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.
5 #include "ui/chromeos/user_activity_power_manager_notifier.h"
7 #include "chromeos/dbus/dbus_thread_manager.h"
8 #include "chromeos/dbus/power_manager_client.h"
9 #include "ui/base/user_activity/user_activity_detector.h"
10 #include "ui/events/event.h"
11 #include "ui/events/event_constants.h"
12 #include "ui/events/keycodes/keyboard_codes_posix.h"
14 namespace ui {
15 namespace {
17 // Minimum number of seconds between notifications.
18 const int kNotifyIntervalSec = 5;
20 // Returns a UserActivityType describing |event|.
21 power_manager::UserActivityType GetUserActivityTypeForEvent(
22 const Event* event) {
23 if (!event || event->type() != ET_KEY_PRESSED)
24 return power_manager::USER_ACTIVITY_OTHER;
26 switch (static_cast<const KeyEvent*>(event)->key_code()) {
27 case VKEY_BRIGHTNESS_DOWN:
28 return power_manager::USER_ACTIVITY_BRIGHTNESS_DOWN_KEY_PRESS;
29 case VKEY_BRIGHTNESS_UP:
30 return power_manager::USER_ACTIVITY_BRIGHTNESS_UP_KEY_PRESS;
31 case VKEY_VOLUME_DOWN:
32 return power_manager::USER_ACTIVITY_VOLUME_DOWN_KEY_PRESS;
33 case VKEY_VOLUME_MUTE:
34 return power_manager::USER_ACTIVITY_VOLUME_MUTE_KEY_PRESS;
35 case VKEY_VOLUME_UP:
36 return power_manager::USER_ACTIVITY_VOLUME_UP_KEY_PRESS;
37 default:
38 return power_manager::USER_ACTIVITY_OTHER;
42 } // namespace
44 UserActivityPowerManagerNotifier::UserActivityPowerManagerNotifier(
45 UserActivityDetector* detector)
46 : detector_(detector) {
47 detector_->AddObserver(this);
50 UserActivityPowerManagerNotifier::~UserActivityPowerManagerNotifier() {
51 detector_->RemoveObserver(this);
54 void UserActivityPowerManagerNotifier::OnUserActivity(const Event* event) {
55 base::TimeTicks now = base::TimeTicks::Now();
56 // InSeconds() truncates rather than rounding, so it's fine for this
57 // comparison.
58 if (last_notify_time_.is_null() ||
59 (now - last_notify_time_).InSeconds() >= kNotifyIntervalSec) {
60 chromeos::DBusThreadManager::Get()->GetPowerManagerClient()->
61 NotifyUserActivity(GetUserActivityTypeForEvent(event));
62 last_notify_time_ = now;
66 } // namespace ui