| Index: content/child/web_url_loader_impl.h
 | 
| diff --git a/content/child/web_url_loader_impl.h b/content/child/web_url_loader_impl.h
 | 
| index 8c1447b2a5ecc6899090d2a5d8abaf572335a76f..9d85d06a152442ba8dc600968f190d8c49ec7560 100644
 | 
| --- a/content/child/web_url_loader_impl.h
 | 
| +++ b/content/child/web_url_loader_impl.h
 | 
| @@ -38,7 +38,7 @@ class CONTENT_EXPORT WebURLLoaderImpl
 | 
|    explicit WebURLLoaderImpl(
 | 
|        ResourceDispatcher* resource_dispatcher,
 | 
|        scoped_refptr<base::SingleThreadTaskRunner> task_runner);
 | 
| -  virtual ~WebURLLoaderImpl();
 | 
| +  ~WebURLLoaderImpl() override;
 | 
|  
 | 
|    static void PopulateURLResponse(
 | 
|        const GURL& url,
 | 
| @@ -46,19 +46,19 @@ class CONTENT_EXPORT WebURLLoaderImpl
 | 
|        blink::WebURLResponse* response);
 | 
|  
 | 
|    // WebURLLoader methods:
 | 
| -  virtual void loadSynchronously(
 | 
| +  void loadSynchronously(
 | 
|        const blink::WebURLRequest& request,
 | 
|        blink::WebURLResponse& response,
 | 
|        blink::WebURLError& error,
 | 
|        blink::WebData& data) override;
 | 
| -  virtual void loadAsynchronously(
 | 
| +  void loadAsynchronously(
 | 
|        const blink::WebURLRequest& request,
 | 
|        blink::WebURLLoaderClient* client) override;
 | 
| -  virtual void cancel() override;
 | 
| -  virtual void setDefersLoading(bool value) override;
 | 
| -  virtual void didChangePriority(blink::WebURLRequest::Priority new_priority,
 | 
| -                                 int intra_priority_value) override;
 | 
| -  virtual bool attachThreadedDataReceiver(
 | 
| +  void cancel() override;
 | 
| +  void setDefersLoading(bool value) override;
 | 
| +  void didChangePriority(blink::WebURLRequest::Priority new_priority,
 | 
| +                         int intra_priority_value) override;
 | 
| +  bool attachThreadedDataReceiver(
 | 
|        blink::WebThreadedDataReceiver* threaded_data_receiver) override;
 | 
|  
 | 
|   private:
 | 
| 
 |