| Index: content/renderer/battery_status/fake_battery_status_dispatcher.cc
|
| diff --git a/content/renderer/battery_status/fake_battery_status_dispatcher.cc b/content/renderer/battery_status/fake_battery_status_dispatcher.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..735df5a28490023d12d6f14788c4c872691a6a39
|
| --- /dev/null
|
| +++ b/content/renderer/battery_status/fake_battery_status_dispatcher.cc
|
| @@ -0,0 +1,28 @@
|
| +// 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 "fake_battery_status_dispatcher.h"
|
| +
|
| +#include "base/bind.h"
|
| +#include "base/location.h"
|
| +#include "base/message_loop/message_loop_proxy.h"
|
| +#include "third_party/WebKit/public/platform/WebBatteryStatusListener.h"
|
| +
|
| +namespace content {
|
| +
|
| +FakeBatteryStatusDispatcher::FakeBatteryStatusDispatcher() : listener_(0) {
|
| +}
|
| +
|
| +void FakeBatteryStatusDispatcher::SetListener(
|
| + blink::WebBatteryStatusListener* listener) {
|
| + listener_ = listener;
|
| +}
|
| +
|
| +void FakeBatteryStatusDispatcher::PostBatteryStatusChange(
|
| + const blink::WebBatteryStatus& status) {
|
| + if (listener_)
|
| + listener_->updateBatteryStatus(status);
|
| +}
|
| +
|
| +} // namespace content
|
|
|