Chromium Code Reviews| Index: content/browser/battery_status/battery_status_manager_default.cc |
| diff --git a/content/browser/battery_status/battery_status_manager_default.cc b/content/browser/battery_status/battery_status_manager_default.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..36eb95a69f6268c6734460ac8618387da382f059 |
| --- /dev/null |
| +++ b/content/browser/battery_status/battery_status_manager_default.cc |
| @@ -0,0 +1,25 @@ |
| +// Copyright 2014 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/battery_status/battery_status_manager.h" |
|
bulach
2014/05/02 16:41:15
I suppose you'll need
#include "base/logging/logg
timvolodine
2014/05/06 12:12:19
yes indeed. Done.
|
| + |
| +namespace content { |
| + |
| +BatteryStatusManager::BatteryStatusManager( |
| + const BatteryStatusUpdateCallback& callback) : callback_(callback) { |
| +} |
| + |
| +BatteryStatusManager::~BatteryStatusManager() { |
| +} |
| + |
| +bool BatteryStatusManager::StartListeningBatteryChange() { |
| + NOTIMPLEMENTED(); |
| + return false; |
| +} |
| + |
| +void BatteryStatusManager::StopListeningBatteryChange() { |
| + NOTIMPLEMENTED(); |
| +} |
| + |
| +} // namespace content |