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

Side by Side Diff: third_party/WebKit/Source/modules/battery/BatteryDispatcher.h

Issue 1538803002: Migrates battery_status from content/renderer/ to WebKit/platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: BatteryStatusDispatcher => BatteryDispatcherProxy Created 4 years, 10 months 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BatteryDispatcher_h 5 #ifndef BatteryDispatcher_h
6 #define BatteryDispatcher_h 6 #define BatteryDispatcher_h
7 7
8 #include "core/frame/PlatformEventDispatcher.h" 8 #include "core/frame/PlatformEventDispatcher.h"
9 #include "modules/ModulesExport.h"
9 #include "modules/battery/BatteryManager.h" 10 #include "modules/battery/BatteryManager.h"
10 #include "modules/battery/BatteryStatus.h" 11 #include "platform/battery/battery_dispatcher_proxy.h"
kinuko 2016/02/16 10:09:18 nit: this could be forward-declared
Yuki 2016/02/16 13:21:58 Done.
11 #include "public/platform/WebBatteryStatusListener.h" 12 #include "platform/battery/battery_status_listener.h"
13 #include "wtf/OwnPtr.h"
12 14
13 namespace blink { 15 namespace blink {
14 16
15 class WebBatteryStatus; 17 class MODULES_EXPORT BatteryDispatcher final : public GarbageCollectedFinalized< BatteryDispatcher>, public PlatformEventDispatcher, public BatteryStatusListener {
16
17 class BatteryDispatcher final : public GarbageCollectedFinalized<BatteryDispatch er>, public PlatformEventDispatcher, public WebBatteryStatusListener {
18 USING_GARBAGE_COLLECTED_MIXIN(BatteryDispatcher); 18 USING_GARBAGE_COLLECTED_MIXIN(BatteryDispatcher);
19 public: 19 public:
20 static BatteryDispatcher& instance(); 20 static BatteryDispatcher& instance();
21 ~BatteryDispatcher() override; 21 ~BatteryDispatcher() override;
22 22
23 BatteryStatus* latestData(); 23 const BatteryStatus* latestData() const
24 {
25 return m_hasLatestData ? &m_batteryStatus : nullptr;
26 }
24 27
25 // Inherited from WebBatteryStatusListener. 28 // Inherited from BatteryStatusListener.
26 void updateBatteryStatus(const WebBatteryStatus&) override; 29 void OnUpdateBatteryStatus(const BatteryStatus&) override;
27
28 DECLARE_VIRTUAL_TRACE();
29 30
30 private: 31 private:
31 BatteryDispatcher(); 32 BatteryDispatcher();
32 33
33 // Inherited from PlatformEventDispatcher. 34 // Inherited from PlatformEventDispatcher.
34 void startListening() override; 35 void startListening() override;
35 void stopListening() override; 36 void stopListening() override;
36 37
37 Member<BatteryStatus> m_batteryStatus; 38 BatteryStatus m_batteryStatus;
39 bool m_hasLatestData;
40 OwnPtr<BatteryDispatcherProxy> m_batteryDispatcherProxy;
38 }; 41 };
39 42
40 } // namespace blink 43 } // namespace blink
41 44
42 #endif // BatteryDispatcher_h 45 #endif // BatteryDispatcher_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698