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

Unified Diff: chrome/browser/component_updater/component_updater_resource_throttle.cc

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/component_updater/component_updater_resource_throttle.cc
diff --git a/chrome/browser/component_updater/component_updater_resource_throttle.cc b/chrome/browser/component_updater/component_updater_resource_throttle.cc
index c98fc5f6168bb07be5c44db9207b43968c33be0d..53b8c790a34f556ba613e5b7c9e345958e440d6a 100644
--- a/chrome/browser/component_updater/component_updater_resource_throttle.cc
+++ b/chrome/browser/component_updater/component_updater_resource_throttle.cc
@@ -31,9 +31,9 @@ class CUResourceThrottle : public content::ResourceThrottle,
virtual ~CUResourceThrottle();
// Overriden from ResourceThrottle.
- virtual void WillStartRequest(bool* defer) OVERRIDE;
- virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE;
- virtual const char* GetNameForLogging() const OVERRIDE;
+ virtual void WillStartRequest(bool* defer) override;
+ virtual void WillRedirectRequest(const GURL& new_url, bool* defer) override;
+ virtual const char* GetNameForLogging() const override;
// Component updater calls this function via PostTask to unblock the request.
void Unblock();

Powered by Google App Engine
This is Rietveld 408576698