| Index: chrome/browser/sync/test/test_http_bridge_factory.h
 | 
| diff --git a/chrome/browser/sync/test/test_http_bridge_factory.h b/chrome/browser/sync/test/test_http_bridge_factory.h
 | 
| index 145d1464ebf6c02f24c07d02163fa2a9d5c029e8..6a99b80e297718ce718af22f19b57019172af232 100644
 | 
| --- a/chrome/browser/sync/test/test_http_bridge_factory.h
 | 
| +++ b/chrome/browser/sync/test/test_http_bridge_factory.h
 | 
| @@ -14,25 +14,25 @@ namespace browser_sync {
 | 
|  class TestHttpBridge : public syncer::HttpPostProviderInterface {
 | 
|   public:
 | 
|    // Begin syncer::HttpPostProviderInterface implementation:
 | 
| -  virtual void SetExtraRequestHeaders(const char * headers) OVERRIDE {}
 | 
| +  virtual void SetExtraRequestHeaders(const char * headers) override {}
 | 
|  
 | 
| -  virtual void SetURL(const char* url, int port) OVERRIDE {}
 | 
| +  virtual void SetURL(const char* url, int port) override {}
 | 
|  
 | 
|    virtual void SetPostPayload(const char* content_type,
 | 
|                                int content_length,
 | 
| -                              const char* content) OVERRIDE {}
 | 
| +                              const char* content) override {}
 | 
|  
 | 
|    virtual bool MakeSynchronousPost(int* error_code,
 | 
| -                                   int* response_code) OVERRIDE;
 | 
| +                                   int* response_code) override;
 | 
|  
 | 
| -  virtual int GetResponseContentLength() const OVERRIDE;
 | 
| +  virtual int GetResponseContentLength() const override;
 | 
|  
 | 
| -  virtual const char* GetResponseContent() const OVERRIDE;
 | 
| +  virtual const char* GetResponseContent() const override;
 | 
|  
 | 
|    virtual const std::string GetResponseHeaderValue(
 | 
| -      const std::string&) const OVERRIDE;
 | 
| +      const std::string&) const override;
 | 
|  
 | 
| -  virtual void Abort() OVERRIDE;
 | 
| +  virtual void Abort() override;
 | 
|    // End syncer::HttpPostProviderInterface implementation.
 | 
|  };
 | 
|  
 | 
| @@ -42,9 +42,9 @@ class TestHttpBridgeFactory : public syncer::HttpPostProviderFactory {
 | 
|    virtual ~TestHttpBridgeFactory();
 | 
|  
 | 
|    // syncer::HttpPostProviderFactory:
 | 
| -  virtual void Init(const std::string& user_agent) OVERRIDE;
 | 
| -  virtual syncer::HttpPostProviderInterface* Create() OVERRIDE;
 | 
| -  virtual void Destroy(syncer::HttpPostProviderInterface* http) OVERRIDE;
 | 
| +  virtual void Init(const std::string& user_agent) override;
 | 
| +  virtual syncer::HttpPostProviderInterface* Create() override;
 | 
| +  virtual void Destroy(syncer::HttpPostProviderInterface* http) override;
 | 
|  };
 | 
|  
 | 
|  }  // namespace browser_sync
 | 
| 
 |