Home
last modified time | relevance | path

Searched refs:HttpPostProviderInterface (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/sync/internal_api/public/
Dhttp_post_provider_factory.h14 class HttpPostProviderInterface; variable
27 virtual HttpPostProviderInterface* Create() = 0;
34 virtual void Destroy(HttpPostProviderInterface* http) = 0;
Dhttp_post_provider_interface.h18 class SYNC_EXPORT_PRIVATE HttpPostProviderInterface {
59 virtual ~HttpPostProviderInterface() {} in ~HttpPostProviderInterface()
Dhttp_bridge.h51 public HttpPostProviderInterface,
239 virtual HttpPostProviderInterface* Create() OVERRIDE;
240 virtual void Destroy(HttpPostProviderInterface* http) OVERRIDE;
/external/chromium_org/chrome/browser/sync/test/
Dtest_http_bridge_factory.h14 class TestHttpBridge : public syncer::HttpPostProviderInterface {
46 virtual syncer::HttpPostProviderInterface* Create() OVERRIDE;
47 virtual void Destroy(syncer::HttpPostProviderInterface* http) OVERRIDE;
Dtest_http_bridge_factory.cc36 syncer::HttpPostProviderInterface* TestHttpBridgeFactory::Create() { in Create()
40 void TestHttpBridgeFactory::Destroy(syncer::HttpPostProviderInterface* http) { in Destroy()
/external/chromium_org/sync/test/fake_server/
Dfake_server_http_post_provider.h21 : public syncer::HttpPostProviderInterface,
76 virtual syncer::HttpPostProviderInterface* Create() OVERRIDE;
77 virtual void Destroy(syncer::HttpPostProviderInterface* http) OVERRIDE;
Dfake_server_http_post_provider.cc16 using syncer::HttpPostProviderInterface;
29 HttpPostProviderInterface* FakeServerHttpPostProviderFactory::Create() { in Create()
37 HttpPostProviderInterface* http) { in Destroy()
/external/chromium_org/sync/internal_api/
Dsyncapi_server_connection_manager_unittest.cc25 class BlockingHttpPost : public HttpPostProviderInterface {
62 virtual HttpPostProviderInterface* Create() OVERRIDE { in Create()
65 virtual void Destroy(HttpPostProviderInterface* http) OVERRIDE { in Destroy()
Dsyncapi_server_connection_manager.h19 class HttpPostProviderInterface; variable
42 HttpPostProviderInterface* post_provider_;
Dhttp_bridge_unittest.cc412 syncer::HttpPostProviderInterface** bridge_out, in HttpBridgeRunOnSyncThread()
422 HttpPostProviderInterface* bridge = bridge_factory->Create(); in HttpBridgeRunOnSyncThread()
444 syncer::HttpPostProviderInterface* bridge = NULL; in TEST_F()
Dsyncapi_server_connection_manager.cc37 HttpPostProviderInterface* http = post_provider_; in Init()
Dhttp_bridge.cc89 HttpPostProviderInterface* HttpBridgeFactory::Create() { in Create()
104 void HttpBridgeFactory::Destroy(HttpPostProviderInterface* http) { in Destroy()
Dsync_manager_impl_unittest.cc692 class TestHttpPostProviderInterface : public HttpPostProviderInterface {
722 virtual HttpPostProviderInterface* Create() OVERRIDE { in Create()
725 virtual void Destroy(HttpPostProviderInterface* http) OVERRIDE { in Destroy()