| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_SYNC_TEST_TEST_HTTP_BRIDGE_FACTORY_H_ | 5 #ifndef CHROME_BROWSER_SYNC_TEST_TEST_HTTP_BRIDGE_FACTORY_H_ |
| 6 #define CHROME_BROWSER_SYNC_TEST_TEST_HTTP_BRIDGE_FACTORY_H_ | 6 #define CHROME_BROWSER_SYNC_TEST_TEST_HTTP_BRIDGE_FACTORY_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "sync/internal_api/public/http_post_provider_factory.h" | 9 #include "sync/internal_api/public/http_post_provider_factory.h" |
| 10 #include "sync/internal_api/public/http_post_provider_interface.h" | 10 #include "sync/internal_api/public/http_post_provider_interface.h" |
| 11 | 11 |
| 12 namespace browser_sync { | 12 namespace browser_sync { |
| 13 | 13 |
| 14 class TestHttpBridge : public syncer::HttpPostProviderInterface { | 14 class TestHttpBridge : public syncer::HttpPostProviderInterface { |
| 15 public: | 15 public: |
| 16 // Begin syncer::HttpPostProviderInterface implementation: | 16 // Begin syncer::HttpPostProviderInterface implementation: |
| 17 virtual void SetExtraRequestHeaders(const char * headers) OVERRIDE {} | 17 virtual void SetExtraRequestHeaders(const char * headers) override {} |
| 18 | 18 |
| 19 virtual void SetURL(const char* url, int port) OVERRIDE {} | 19 virtual void SetURL(const char* url, int port) override {} |
| 20 | 20 |
| 21 virtual void SetPostPayload(const char* content_type, | 21 virtual void SetPostPayload(const char* content_type, |
| 22 int content_length, | 22 int content_length, |
| 23 const char* content) OVERRIDE {} | 23 const char* content) override {} |
| 24 | 24 |
| 25 virtual bool MakeSynchronousPost(int* error_code, | 25 virtual bool MakeSynchronousPost(int* error_code, |
| 26 int* response_code) OVERRIDE; | 26 int* response_code) override; |
| 27 | 27 |
| 28 virtual int GetResponseContentLength() const OVERRIDE; | 28 virtual int GetResponseContentLength() const override; |
| 29 | 29 |
| 30 virtual const char* GetResponseContent() const OVERRIDE; | 30 virtual const char* GetResponseContent() const override; |
| 31 | 31 |
| 32 virtual const std::string GetResponseHeaderValue( | 32 virtual const std::string GetResponseHeaderValue( |
| 33 const std::string&) const OVERRIDE; | 33 const std::string&) const override; |
| 34 | 34 |
| 35 virtual void Abort() OVERRIDE; | 35 virtual void Abort() override; |
| 36 // End syncer::HttpPostProviderInterface implementation. | 36 // End syncer::HttpPostProviderInterface implementation. |
| 37 }; | 37 }; |
| 38 | 38 |
| 39 class TestHttpBridgeFactory : public syncer::HttpPostProviderFactory { | 39 class TestHttpBridgeFactory : public syncer::HttpPostProviderFactory { |
| 40 public: | 40 public: |
| 41 TestHttpBridgeFactory(); | 41 TestHttpBridgeFactory(); |
| 42 virtual ~TestHttpBridgeFactory(); | 42 virtual ~TestHttpBridgeFactory(); |
| 43 | 43 |
| 44 // syncer::HttpPostProviderFactory: | 44 // syncer::HttpPostProviderFactory: |
| 45 virtual void Init(const std::string& user_agent) OVERRIDE; | 45 virtual void Init(const std::string& user_agent) override; |
| 46 virtual syncer::HttpPostProviderInterface* Create() OVERRIDE; | 46 virtual syncer::HttpPostProviderInterface* Create() override; |
| 47 virtual void Destroy(syncer::HttpPostProviderInterface* http) OVERRIDE; | 47 virtual void Destroy(syncer::HttpPostProviderInterface* http) override; |
| 48 }; | 48 }; |
| 49 | 49 |
| 50 } // namespace browser_sync | 50 } // namespace browser_sync |
| 51 | 51 |
| 52 #endif // CHROME_BROWSER_SYNC_TEST_TEST_HTTP_BRIDGE_FACTORY_H_ | 52 #endif // CHROME_BROWSER_SYNC_TEST_TEST_HTTP_BRIDGE_FACTORY_H_ |
| OLD | NEW |