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

Unified Diff: Source/modules/battery/BatteryDispatcher.h

Issue 466813003: Cleanup namespace usage in Source/core/modules/[battery/* to indexeddb/*] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/modules/device_light/DeviceLightDispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/battery/BatteryDispatcher.h
diff --git a/Source/modules/battery/BatteryDispatcher.h b/Source/modules/battery/BatteryDispatcher.h
index 90c49825b42fbd9fe453de3b4e4013b7b9c07470..b45edc60b465b57b6676439909dd291514cc17bb 100644
--- a/Source/modules/battery/BatteryDispatcher.h
+++ b/Source/modules/battery/BatteryDispatcher.h
@@ -11,20 +11,18 @@
#include "public/platform/WebBatteryStatusListener.h"
namespace blink {
-class WebBatteryStatus;
-}
-namespace blink {
+class WebBatteryStatus;
-class BatteryDispatcher FINAL : public PlatformEventDispatcher, public blink::WebBatteryStatusListener {
+class BatteryDispatcher FINAL : public PlatformEventDispatcher, public WebBatteryStatusListener {
public:
static BatteryDispatcher& instance();
virtual ~BatteryDispatcher();
BatteryStatus* latestData();
- // Inherited from blink::WebBatteryStatusListener.
- virtual void updateBatteryStatus(const blink::WebBatteryStatus&) OVERRIDE;
+ // Inherited from WebBatteryStatusListener.
+ virtual void updateBatteryStatus(const WebBatteryStatus&) OVERRIDE;
private:
BatteryDispatcher();
@@ -36,6 +34,6 @@ private:
RefPtrWillBePersistent<BatteryStatus> m_batteryStatus;
};
-}
+} // namespace blink
#endif // BatteryDispatcher_h
« no previous file with comments | « no previous file | Source/modules/device_light/DeviceLightDispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698