| 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 53b8c790a34f556ba613e5b7c9e345958e440d6a..a18041991dd9087e20b0ec1bad9946691595ebfd 100644
|
| --- a/chrome/browser/component_updater/component_updater_resource_throttle.cc
|
| +++ b/chrome/browser/component_updater/component_updater_resource_throttle.cc
|
| @@ -28,12 +28,12 @@ class CUResourceThrottle : public content::ResourceThrottle,
|
| public base::SupportsWeakPtr<CUResourceThrottle> {
|
| public:
|
| CUResourceThrottle();
|
| - virtual ~CUResourceThrottle();
|
| + ~CUResourceThrottle() override;
|
|
|
| // 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;
|
| + void WillStartRequest(bool* defer) override;
|
| + void WillRedirectRequest(const GURL& new_url, bool* defer) override;
|
| + const char* GetNameForLogging() const override;
|
|
|
| // Component updater calls this function via PostTask to unblock the request.
|
| void Unblock();
|
|
|