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

Unified Diff: chrome/browser/extensions/user_script_listener.cc

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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: chrome/browser/extensions/user_script_listener.cc
diff --git a/chrome/browser/extensions/user_script_listener.cc b/chrome/browser/extensions/user_script_listener.cc
index 35d2d5e77068d59c3a5fe17fe66f2456eefa5e0f..11e2f8be11f9a30553c3c80f972c8b827c931204 100644
--- a/chrome/browser/extensions/user_script_listener.cc
+++ b/chrome/browser/extensions/user_script_listener.cc
@@ -39,7 +39,7 @@ class UserScriptListener::Throttle
}
// ResourceThrottle implementation:
- virtual void WillStartRequest(bool* defer) OVERRIDE {
+ virtual void WillStartRequest(bool* defer) override {
// Only defer requests if Resume has not yet been called.
if (should_defer_) {
*defer = true;
@@ -47,7 +47,7 @@ class UserScriptListener::Throttle
}
}
- virtual const char* GetNameForLogging() const OVERRIDE {
+ virtual const char* GetNameForLogging() const override {
return "UserScriptListener::Throttle";
}
« no previous file with comments | « chrome/browser/extensions/user_script_listener.h ('k') | chrome/browser/extensions/user_script_listener_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698