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

Unified Diff: Source/modules/device_orientation/DeviceOrientationInspectorAgent.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
Index: Source/modules/device_orientation/DeviceOrientationInspectorAgent.h
diff --git a/Source/modules/device_orientation/DeviceOrientationInspectorAgent.h b/Source/modules/device_orientation/DeviceOrientationInspectorAgent.h
index 53b578972eb9a67396ddd04af81d48da0f3647f5..fb0f9d5756f52fec5202dd3bbea9083443f90325 100644
--- a/Source/modules/device_orientation/DeviceOrientationInspectorAgent.h
+++ b/Source/modules/device_orientation/DeviceOrientationInspectorAgent.h
@@ -15,7 +15,7 @@ class Page;
typedef String ErrorString;
-class DeviceOrientationInspectorAgent FINAL : public InspectorBaseAgent<DeviceOrientationInspectorAgent>, public InspectorBackendDispatcher::DeviceOrientationCommandHandler {
+class DeviceOrientationInspectorAgent final : public InspectorBaseAgent<DeviceOrientationInspectorAgent>, public InspectorBackendDispatcher::DeviceOrientationCommandHandler {
WTF_MAKE_NONCOPYABLE(DeviceOrientationInspectorAgent);
public:
static void provideTo(Page&);
@@ -23,13 +23,13 @@ public:
virtual ~DeviceOrientationInspectorAgent();
// Protocol methods.
- virtual void setDeviceOrientationOverride(ErrorString*, double, double, double) OVERRIDE;
- virtual void clearDeviceOrientationOverride(ErrorString*) OVERRIDE;
+ virtual void setDeviceOrientationOverride(ErrorString*, double, double, double) override;
+ virtual void clearDeviceOrientationOverride(ErrorString*) override;
// Inspector Controller API.
- virtual void clearFrontend() OVERRIDE;
- virtual void restore() OVERRIDE;
- virtual void didCommitLoadForMainFrame() OVERRIDE;
+ virtual void clearFrontend() override;
+ virtual void restore() override;
+ virtual void didCommitLoadForMainFrame() override;
private:
explicit DeviceOrientationInspectorAgent(Page&);
« no previous file with comments | « Source/modules/device_orientation/DeviceOrientationEvent.h ('k') | Source/modules/device_orientation/DeviceRotationRate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698