| Index: components/navigation_interception/intercept_navigation_resource_throttle.h
|
| diff --git a/components/navigation_interception/intercept_navigation_resource_throttle.h b/components/navigation_interception/intercept_navigation_resource_throttle.h
|
| index b77a5f756288304464c9148d65b3996c51b5b8c7..062a05f77f3033c33b2d15b2731761e67bb56bd9 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();
|
|
|