blob: 8a74caeb0448f3ce2ec215889b85ac9a635e07d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/chromeos/power/power_button_observer.h"
#include "ash/shell.h"
#include "ash/system/tray/system_tray_delegate.h"
#include "ash/system/user/login_status.h"
#include "ash/wm/power_button_controller.h"
#include "base/logging.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/chromeos/login/lock/screen_locker.h"
#include "chrome/browser/chromeos/power/session_state_controller_delegate_chromeos.h"
#include "chromeos/dbus/dbus_thread_manager.h"
#include "content/public/browser/notification_service.h"
namespace chromeos {
namespace {
ash::user::LoginStatus GetCurrentLoginStatus() {
if (!ash::Shell::GetInstance()->system_tray_delegate())
return ash::user::LOGGED_IN_NONE;
return ash::Shell::GetInstance()->system_tray_delegate()->
GetUserLoginStatus();
}
} // namespace
PowerButtonObserver::PowerButtonObserver() {
ash::Shell::GetInstance()->lock_state_controller()->
SetDelegate(new SessionStateControllerDelegateChromeos);
registrar_.Add(
this,
chrome::NOTIFICATION_LOGIN_USER_CHANGED,
content::NotificationService::AllSources());
registrar_.Add(
this,
chrome::NOTIFICATION_APP_TERMINATING,
content::NotificationService::AllSources());
registrar_.Add(
this,
chrome::NOTIFICATION_SCREEN_LOCK_STATE_CHANGED,
content::NotificationService::AllSources());
DBusThreadManager::Get()->GetPowerManagerClient()->AddObserver(this);
DBusThreadManager::Get()->GetSessionManagerClient()->AddObserver(this);
// Tell the controller about the initial state.
ash::Shell::GetInstance()->OnLoginStateChanged(GetCurrentLoginStatus());
const ScreenLocker* locker = ScreenLocker::default_screen_locker();
bool locked = locker && locker->locked();
ash::Shell::GetInstance()->OnLockStateChanged(locked);
}
PowerButtonObserver::~PowerButtonObserver() {
DBusThreadManager::Get()->GetSessionManagerClient()->RemoveObserver(this);
DBusThreadManager::Get()->GetPowerManagerClient()->RemoveObserver(this);
}
void PowerButtonObserver::Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
switch (type) {
case chrome::NOTIFICATION_LOGIN_USER_CHANGED: {
ash::Shell::GetInstance()->OnLoginStateChanged(GetCurrentLoginStatus());
break;
}
case chrome::NOTIFICATION_APP_TERMINATING:
ash::Shell::GetInstance()->OnAppTerminating();
break;
case chrome::NOTIFICATION_SCREEN_LOCK_STATE_CHANGED: {
bool locked = *content::Details<bool>(details).ptr();
ash::Shell::GetInstance()->OnLockStateChanged(locked);
break;
}
default:
NOTREACHED() << "Unexpected notification " << type;
}
}
void PowerButtonObserver::PowerButtonEventReceived(
bool down, const base::TimeTicks& timestamp) {
ash::Shell::GetInstance()->power_button_controller()->
OnPowerButtonEvent(down, timestamp);
}
} // namespace chromeos
|