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

Unified Diff: Source/modules/device_light/DeviceLightEvent.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
Index: Source/modules/device_light/DeviceLightEvent.h
diff --git a/Source/modules/device_light/DeviceLightEvent.h b/Source/modules/device_light/DeviceLightEvent.h
index 3632c40b13f1ff8937e39782aba6a6695f889a6e..87f8554246cdefdf5b47461e4b04de2fea69f6da 100644
--- a/Source/modules/device_light/DeviceLightEvent.h
+++ b/Source/modules/device_light/DeviceLightEvent.h
@@ -14,7 +14,7 @@ namespace blink {
class DeviceLightEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- virtual ~DeviceLightEvent();
+ ~DeviceLightEvent() override;
static PassRefPtrWillBeRawPtr<DeviceLightEvent> create()
{
@@ -31,7 +31,7 @@ public:
double value() const { return m_value; }
- virtual const AtomicString& interfaceName() const override;
+ const AtomicString& interfaceName() const override;
private:
DeviceLightEvent();
« no previous file with comments | « Source/modules/device_light/DeviceLightDispatcher.h ('k') | Source/modules/device_orientation/DeviceMotionController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698