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 11e2f8be11f9a30553c3c80f972c8b827c931204..232b365e0067ea526dc364614f3f2da6bab14da0 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 { |
+ 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 { |
+ const char* GetNameForLogging() const override { |
return "UserScriptListener::Throttle"; |
} |