| 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" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 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 syncer::HttpPostProviderInterface* Create() OVERRIDE; | 46 virtual syncer::HttpPostProviderInterface* Create() OVERRIDE; |
| 46 virtual void Destroy(syncer::HttpPostProviderInterface* http) OVERRIDE; | 47 virtual void Destroy(syncer::HttpPostProviderInterface* http) OVERRIDE; |
| 47 virtual void Shutdown() 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 |