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

Unified Diff: Source/modules/device_light/DeviceLightController.h

Issue 635233004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 | « Source/modules/crypto/WorkerGlobalScopeCrypto.h ('k') | Source/modules/device_light/DeviceLightEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/device_light/DeviceLightController.h
diff --git a/Source/modules/device_light/DeviceLightController.h b/Source/modules/device_light/DeviceLightController.h
index 0450abbf2de59135d0904924ab6b1bc5bfe99bf5..0d2213dc7b1736b42198e217d34a6ab785ee0019 100644
--- a/Source/modules/device_light/DeviceLightController.h
+++ b/Source/modules/device_light/DeviceLightController.h
@@ -12,7 +12,7 @@ namespace blink {
class Event;
-class DeviceLightController FINAL : public DeviceSingleWindowEventController, public DocumentSupplement {
+class DeviceLightController final : public DeviceSingleWindowEventController, public DocumentSupplement {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DeviceLightController);
public:
virtual ~DeviceLightController();
@@ -20,20 +20,20 @@ public:
static const char* supplementName();
static DeviceLightController& from(Document&);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
explicit DeviceLightController(Document&);
// Inherited from DeviceEventControllerBase.
- virtual void registerWithDispatcher() OVERRIDE;
- virtual void unregisterWithDispatcher() OVERRIDE;
- virtual bool hasLastData() OVERRIDE;
+ virtual void registerWithDispatcher() override;
+ virtual void unregisterWithDispatcher() override;
+ virtual bool hasLastData() override;
// Inherited from DeviceSingleWindowEventController.
- virtual PassRefPtrWillBeRawPtr<Event> lastEvent() const OVERRIDE;
- virtual const AtomicString& eventTypeName() const OVERRIDE;
- virtual bool isNullEvent(Event*) const OVERRIDE;
+ virtual PassRefPtrWillBeRawPtr<Event> lastEvent() const override;
+ virtual const AtomicString& eventTypeName() const override;
+ virtual bool isNullEvent(Event*) const override;
};
} // namespace blink
« no previous file with comments | « Source/modules/crypto/WorkerGlobalScopeCrypto.h ('k') | Source/modules/device_light/DeviceLightEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698