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

Unified Diff: Source/modules/device_orientation/DeviceOrientationInspectorAgent.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_orientation/DeviceOrientationInspectorAgent.h
diff --git a/Source/modules/device_orientation/DeviceOrientationInspectorAgent.h b/Source/modules/device_orientation/DeviceOrientationInspectorAgent.h
index a5911d64dbb2cb45e598d824e8a6b2ccad5b745f..c1c691973c45bf6261cbebfc78ed990458653b28 100644
--- a/Source/modules/device_orientation/DeviceOrientationInspectorAgent.h
+++ b/Source/modules/device_orientation/DeviceOrientationInspectorAgent.h
@@ -22,11 +22,11 @@ class MODULES_EXPORT DeviceOrientationInspectorAgent final : public InspectorBas
public:
static PassOwnPtrWillBeRawPtr<DeviceOrientationInspectorAgent> create(Page*);
- virtual ~DeviceOrientationInspectorAgent();
+ ~DeviceOrientationInspectorAgent() override;
// Protocol methods.
- virtual void setDeviceOrientationOverride(ErrorString*, double, double, double) override;
- virtual void clearDeviceOrientationOverride(ErrorString*) override;
+ void setDeviceOrientationOverride(ErrorString*, double, double, double) override;
+ void clearDeviceOrientationOverride(ErrorString*) override;
// Inspector Controller API.
void disable(ErrorString*) override;

Powered by Google App Engine
This is Rietveld 408576698