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

Unified Diff: content/browser/gamepad/gamepad_platform_data_fetcher_mac.h

Issue 633843002: Replacing the OVERRIDE with override and FINAL with final in content/browser/[dom_storage|gamepad|… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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: content/browser/gamepad/gamepad_platform_data_fetcher_mac.h
diff --git a/content/browser/gamepad/gamepad_platform_data_fetcher_mac.h b/content/browser/gamepad/gamepad_platform_data_fetcher_mac.h
index 54e65392864555f1ebab8b8a044af61e5a8b819b..20db3c93a60e2c29ccbcd91d195c8cbe078892db 100644
--- a/content/browser/gamepad/gamepad_platform_data_fetcher_mac.h
+++ b/content/browser/gamepad/gamepad_platform_data_fetcher_mac.h
@@ -33,8 +33,8 @@ class GamepadPlatformDataFetcherMac : public GamepadDataFetcher,
GamepadPlatformDataFetcherMac();
virtual ~GamepadPlatformDataFetcherMac();
virtual void GetGamepadData(blink::WebGamepads* pads,
- bool devices_changed_hint) OVERRIDE;
- virtual void PauseHint(bool paused) OVERRIDE;
+ bool devices_changed_hint) override;
+ virtual void PauseHint(bool paused) override;
private:
bool enabled_;
@@ -63,10 +63,10 @@ class GamepadPlatformDataFetcherMac : public GamepadDataFetcher,
void DeviceRemove(IOHIDDeviceRef device);
void ValueChanged(IOHIDValueRef value);
- virtual void XboxDeviceAdd(XboxController* device) OVERRIDE;
- virtual void XboxDeviceRemove(XboxController* device) OVERRIDE;
+ virtual void XboxDeviceAdd(XboxController* device) override;
+ virtual void XboxDeviceRemove(XboxController* device) override;
virtual void XboxValueChanged(XboxController* device,
- const XboxController::Data& data) OVERRIDE;
+ const XboxController::Data& data) override;
void RegisterForNotifications();
void UnregisterFromNotifications();

Powered by Google App Engine
This is Rietveld 408576698