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
92
93
94
95
96
97
98
99
100
101
|
// 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 "content/browser/power_save_blocker_impl.h"
#include <string>
#include "base/bind.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "chromeos/dbus/power_policy_controller.h"
#include "content/public/browser/browser_thread.h"
namespace content {
namespace {
// Converts a PowerSaveBlocker::Reason to a
// chromeos::PowerPolicyController::WakeLockReason.
chromeos::PowerPolicyController::WakeLockReason GetWakeLockReason(
PowerSaveBlocker::Reason reason) {
switch (reason) {
case PowerSaveBlocker::kReasonAudioPlayback:
return chromeos::PowerPolicyController::REASON_AUDIO_PLAYBACK;
case PowerSaveBlocker::kReasonVideoPlayback:
return chromeos::PowerPolicyController::REASON_VIDEO_PLAYBACK;
case PowerSaveBlocker::kReasonOther:
return chromeos::PowerPolicyController::REASON_OTHER;
}
return chromeos::PowerPolicyController::REASON_OTHER;
}
} // namespace
class PowerSaveBlockerImpl::Delegate
: public base::RefCountedThreadSafe<PowerSaveBlockerImpl::Delegate> {
public:
Delegate(PowerSaveBlockerType type,
Reason reason,
const std::string& description)
: type_(type), reason_(reason), description_(description), block_id_(0) {}
void ApplyBlock() {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
if (!chromeos::PowerPolicyController::IsInitialized())
return;
auto* controller = chromeos::PowerPolicyController::Get();
switch (type_) {
case kPowerSaveBlockPreventAppSuspension:
block_id_ = controller->AddSystemWakeLock(GetWakeLockReason(reason_),
description_);
break;
case kPowerSaveBlockPreventDisplaySleep:
block_id_ = controller->AddScreenWakeLock(GetWakeLockReason(reason_),
description_);
break;
default:
NOTREACHED() << "Unhandled block type " << type_;
}
}
void RemoveBlock() {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
if (!chromeos::PowerPolicyController::IsInitialized())
return;
chromeos::PowerPolicyController::Get()->RemoveWakeLock(block_id_);
}
private:
friend class base::RefCountedThreadSafe<Delegate>;
virtual ~Delegate() {}
PowerSaveBlockerType type_;
Reason reason_;
std::string description_;
// ID corresponding to the block request in PowerPolicyController.
int block_id_;
DISALLOW_COPY_AND_ASSIGN(Delegate);
};
PowerSaveBlockerImpl::PowerSaveBlockerImpl(PowerSaveBlockerType type,
Reason reason,
const std::string& description)
: delegate_(new Delegate(type, reason, description)) {
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
base::Bind(&Delegate::ApplyBlock, delegate_));
}
PowerSaveBlockerImpl::~PowerSaveBlockerImpl() {
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
base::Bind(&Delegate::RemoveBlock, delegate_));
}
} // namespace content
|