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

Unified Diff: chrome/browser/download/download_request_limiter.h

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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: chrome/browser/download/download_request_limiter.h
diff --git a/chrome/browser/download/download_request_limiter.h b/chrome/browser/download/download_request_limiter.h
index 2b4e7909b88fc98aa5bfc92736fdab83d357351e..7627e282f782e4274d345dbe7ded0e17cda23e0c 100644
--- a/chrome/browser/download/download_request_limiter.h
+++ b/chrome/browser/download/download_request_limiter.h
@@ -103,11 +103,11 @@ class DownloadRequestLimiter
// content::WebContentsObserver overrides.
virtual void AboutToNavigateRenderView(
- content::RenderViewHost* render_view_host) OVERRIDE;
+ content::RenderViewHost* render_view_host) override;
// Invoked when a user gesture occurs (mouse click, enter or space). This
// may result in invoking Remove on DownloadRequestLimiter.
- virtual void DidGetUserGesture() OVERRIDE;
- virtual void WebContentsDestroyed() OVERRIDE;
+ virtual void DidGetUserGesture() override;
+ virtual void WebContentsDestroyed() override;
// Asks the user if they really want to allow the download.
// See description above CanDownloadOnIOThread for details on lifetime of
@@ -134,7 +134,7 @@ class DownloadRequestLimiter
// content::NotificationObserver method.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// Remember to either block or allow automatic downloads from this origin.
void SetContentSetting(ContentSetting setting);

Powered by Google App Engine
This is Rietveld 408576698