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

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

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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/KeyAlgorithm.h ('k') | 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/device_light/DeviceLightController.h
diff --git a/Source/modules/device_light/DeviceLightController.h b/Source/modules/device_light/DeviceLightController.h
index 715d2f1eac92363789b8f41bafeae4406fa26c70..91f2ab0ad0a81649714805c421f980eb687c1427 100644
--- a/Source/modules/device_light/DeviceLightController.h
+++ b/Source/modules/device_light/DeviceLightController.h
@@ -16,7 +16,7 @@ class Event;
class MODULES_EXPORT DeviceLightController final : public DeviceSingleWindowEventController, public WillBeHeapSupplement<Document> {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DeviceLightController);
public:
- virtual ~DeviceLightController();
+ ~DeviceLightController() override;
static const char* supplementName();
static DeviceLightController& from(Document&);
@@ -27,14 +27,14 @@ private:
explicit DeviceLightController(Document&);
// Inherited from DeviceEventControllerBase.
- virtual void registerWithDispatcher() override;
- virtual void unregisterWithDispatcher() override;
- virtual bool hasLastData() override;
+ void registerWithDispatcher() override;
+ void unregisterWithDispatcher() override;
+ bool hasLastData() override;
// Inherited from DeviceSingleWindowEventController.
- virtual PassRefPtrWillBeRawPtr<Event> lastEvent() const override;
- virtual const AtomicString& eventTypeName() const override;
- virtual bool isNullEvent(Event*) const override;
+ PassRefPtrWillBeRawPtr<Event> lastEvent() const override;
+ const AtomicString& eventTypeName() const override;
+ bool isNullEvent(Event*) const override;
};
} // namespace blink
« no previous file with comments | « Source/modules/crypto/KeyAlgorithm.h ('k') | Source/modules/device_light/DeviceLightDispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698