| Index: content/browser/devtools/devtools_http_handler_impl.h
 | 
| diff --git a/content/browser/devtools/devtools_http_handler_impl.h b/content/browser/devtools/devtools_http_handler_impl.h
 | 
| index f2dd429d763903eaf2a8ac73c45f78b4fcac3d4e..e861ea6d82f6a9623cabfe599f259b765a631ef2 100644
 | 
| --- a/content/browser/devtools/devtools_http_handler_impl.h
 | 
| +++ b/content/browser/devtools/devtools_http_handler_impl.h
 | 
| @@ -52,19 +52,19 @@ class DevToolsHttpHandlerImpl
 | 
|    void Start();
 | 
|  
 | 
|    // DevToolsHttpHandler implementation.
 | 
| -  virtual void Stop() OVERRIDE;
 | 
| -  virtual GURL GetFrontendURL() OVERRIDE;
 | 
| +  virtual void Stop() override;
 | 
| +  virtual GURL GetFrontendURL() override;
 | 
|  
 | 
|    // net::HttpServer::Delegate implementation.
 | 
| -  virtual void OnConnect(int connection_id) OVERRIDE {}
 | 
| +  virtual void OnConnect(int connection_id) override {}
 | 
|    virtual void OnHttpRequest(int connection_id,
 | 
| -                             const net::HttpServerRequestInfo& info) OVERRIDE;
 | 
| +                             const net::HttpServerRequestInfo& info) override;
 | 
|    virtual void OnWebSocketRequest(
 | 
|        int connection_id,
 | 
| -      const net::HttpServerRequestInfo& info) OVERRIDE;
 | 
| +      const net::HttpServerRequestInfo& info) override;
 | 
|    virtual void OnWebSocketMessage(int connection_id,
 | 
| -                                  const std::string& data) OVERRIDE;
 | 
| -  virtual void OnClose(int connection_id) OVERRIDE;
 | 
| +                                  const std::string& data) override;
 | 
| +  virtual void OnClose(int connection_id) override;
 | 
|  
 | 
|    void OnJsonRequestUI(int connection_id,
 | 
|                         const net::HttpServerRequestInfo& info);
 | 
| 
 |