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

Unified Diff: content/browser/screen_orientation/screen_orientation_delegate_android.h

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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/screen_orientation/screen_orientation_delegate_android.h
diff --git a/content/browser/screen_orientation/screen_orientation_delegate_android.h b/content/browser/screen_orientation/screen_orientation_delegate_android.h
index e43968560e5fc21b172b856158d4080ca3811269..fa3ee6e22113f834c7d30344f88889052c5643c1 100644
--- a/content/browser/screen_orientation/screen_orientation_delegate_android.h
+++ b/content/browser/screen_orientation/screen_orientation_delegate_android.h
@@ -35,11 +35,11 @@ class ScreenOrientationDelegateAndroid : public ScreenOrientationDelegate {
static void StopAccurateListening();
// ScreenOrientationDelegate:
- virtual bool FullScreenRequired(WebContents* web_contents) OVERRIDE;
+ virtual bool FullScreenRequired(WebContents* web_contents) override;
virtual void Lock(
- blink::WebScreenOrientationLockType lock_orientation) OVERRIDE;
- virtual bool ScreenOrientationProviderSupported() OVERRIDE;
- virtual void Unlock() OVERRIDE;
+ blink::WebScreenOrientationLockType lock_orientation) override;
+ virtual bool ScreenOrientationProviderSupported() override;
+ virtual void Unlock() override;
private:
DISALLOW_COPY_AND_ASSIGN(ScreenOrientationDelegateAndroid);

Powered by Google App Engine
This is Rietveld 408576698