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

Unified Diff: content/child/power_monitor_broadcast_source.cc

Issue 2460823002: Decouple Power Monitor from //content. (Closed)
Patch Set: code rebase Created 4 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 side-by-side diff with in-line comments
Download patch
Index: content/child/power_monitor_broadcast_source.cc
diff --git a/content/child/power_monitor_broadcast_source.cc b/content/child/power_monitor_broadcast_source.cc
deleted file mode 100644
index 94d11a87f5b6dc4ac96469271a6cb5c3d1ee1cd2..0000000000000000000000000000000000000000
--- a/content/child/power_monitor_broadcast_source.cc
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright (c) 2013 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/child/power_monitor_broadcast_source.h"
-
-#include "base/location.h"
-#include "base/macros.h"
-#include "content/child/child_thread_impl.h"
-#include "mojo/public/cpp/bindings/binding.h"
-#include "services/service_manager/public/cpp/interface_provider.h"
-
-namespace content {
-
-PowerMonitorBroadcastSource::PowerMonitorBroadcastSource()
- : last_reported_battery_power_state_(false), binding_(this) {
- // May be null during test execution.
- if (ChildThreadImpl::current()) {
- device::mojom::PowerMonitorPtr power_monitor;
- ChildThreadImpl::current()->GetRemoteInterfaces()->GetInterface(
- mojo::GetProxy(&power_monitor));
- power_monitor->SetClient(binding_.CreateInterfacePtrAndBind());
- }
-}
-
-PowerMonitorBroadcastSource::~PowerMonitorBroadcastSource() {
-}
-
-bool PowerMonitorBroadcastSource::IsOnBatteryPowerImpl() {
- return last_reported_battery_power_state_;
-}
-
-void PowerMonitorBroadcastSource::PowerStateChange(bool on_battery_power) {
- last_reported_battery_power_state_ = on_battery_power;
- ProcessPowerEvent(PowerMonitorSource::POWER_STATE_EVENT);
-}
-
-void PowerMonitorBroadcastSource::Suspend() {
- ProcessPowerEvent(PowerMonitorSource::SUSPEND_EVENT);
-}
-
-void PowerMonitorBroadcastSource::Resume() {
- ProcessPowerEvent(PowerMonitorSource::RESUME_EVENT);
-}
-
-} // namespace content
« no previous file with comments | « content/child/power_monitor_broadcast_source.h ('k') | content/child/power_monitor_broadcast_source_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698