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

Unified Diff: content/browser/web_contents/aura/overscroll_navigation_overlay.h

Issue 628213003: Replace OVERRIDE and FINAL with override and final in content/browser/web_contents (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/web_contents/aura/overscroll_navigation_overlay.h
diff --git a/content/browser/web_contents/aura/overscroll_navigation_overlay.h b/content/browser/web_contents/aura/overscroll_navigation_overlay.h
index ccef1bf47886a1193be3cb9cc164bd6dc322b260..00cbf12fb009f45e9e8469d47816fc104b5e8feb 100644
--- a/content/browser/web_contents/aura/overscroll_navigation_overlay.h
+++ b/content/browser/web_contents/aura/overscroll_navigation_overlay.h
@@ -77,16 +77,16 @@ class CONTENT_EXPORT OverscrollNavigationOverlay
ui::Layer* CreateSlideLayer(int offset);
// Overridden from WindowSlider::Delegate:
- virtual ui::Layer* CreateBackLayer() OVERRIDE;
- virtual ui::Layer* CreateFrontLayer() OVERRIDE;
- virtual void OnWindowSlideCompleting() OVERRIDE;
- virtual void OnWindowSlideCompleted(scoped_ptr<ui::Layer> layer) OVERRIDE;
- virtual void OnWindowSlideAborted() OVERRIDE;
- virtual void OnWindowSliderDestroyed() OVERRIDE;
+ virtual ui::Layer* CreateBackLayer() override;
+ virtual ui::Layer* CreateFrontLayer() override;
+ virtual void OnWindowSlideCompleting() override;
+ virtual void OnWindowSlideCompleted(scoped_ptr<ui::Layer> layer) override;
+ virtual void OnWindowSlideAborted() override;
+ virtual void OnWindowSliderDestroyed() override;
// Overridden from WebContentsObserver:
- virtual void DidFirstVisuallyNonEmptyPaint() OVERRIDE;
- virtual void DidStopLoading(RenderViewHost* host) OVERRIDE;
+ virtual void DidFirstVisuallyNonEmptyPaint() override;
+ virtual void DidStopLoading(RenderViewHost* host) override;
// The WebContents which is being navigated.
WebContentsImpl* web_contents_;

Powered by Google App Engine
This is Rietveld 408576698