summaryrefslogtreecommitdiffstats
path: root/components/navigation_interception/intercept_navigation_resource_throttle.h
diff options
context:
space:
mode:
Diffstat (limited to 'components/navigation_interception/intercept_navigation_resource_throttle.h')
-rw-r--r--components/navigation_interception/intercept_navigation_resource_throttle.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/navigation_interception/intercept_navigation_resource_throttle.h b/components/navigation_interception/intercept_navigation_resource_throttle.h
index b77a5f7..062a05f 100644
--- a/components/navigation_interception/intercept_navigation_resource_throttle.h
+++ b/components/navigation_interception/intercept_navigation_resource_throttle.h
@@ -37,12 +37,12 @@ class InterceptNavigationResourceThrottle : public content::ResourceThrottle {
InterceptNavigationResourceThrottle(
net::URLRequest* request,
CheckOnUIThreadCallback should_ignore_callback);
- virtual ~InterceptNavigationResourceThrottle();
+ ~InterceptNavigationResourceThrottle() override;
// content::ResourceThrottle implementation:
- virtual void WillStartRequest(bool* defer) override;
- virtual void WillRedirectRequest(const GURL& new_url, bool* defer) override;
- virtual const char* GetNameForLogging() const override;
+ void WillStartRequest(bool* defer) override;
+ void WillRedirectRequest(const GURL& new_url, bool* defer) override;
+ const char* GetNameForLogging() const override;
private:
std::string GetMethodAfterRedirect();