| Index: sync/internal_api/http_bridge.cc
|
| diff --git a/sync/internal_api/http_bridge.cc b/sync/internal_api/http_bridge.cc
|
| index 6aa6c4abb4a96be7b52a7493aed3e972d041f2ba..38223996864a7f01ed35fe8cae489779f38f1ff4 100644
|
| --- a/sync/internal_api/http_bridge.cc
|
| +++ b/sync/internal_api/http_bridge.cc
|
| @@ -65,13 +65,13 @@ HttpBridgeFactory::HttpBridgeFactory(
|
| HttpBridgeFactory::~HttpBridgeFactory() {
|
| }
|
|
|
| -csync::HttpPostProviderInterface* HttpBridgeFactory::Create() {
|
| +syncer::HttpPostProviderInterface* HttpBridgeFactory::Create() {
|
| HttpBridge* http = new HttpBridge(request_context_getter_);
|
| http->AddRef();
|
| return http;
|
| }
|
|
|
| -void HttpBridgeFactory::Destroy(csync::HttpPostProviderInterface* http) {
|
| +void HttpBridgeFactory::Destroy(syncer::HttpPostProviderInterface* http) {
|
| static_cast<HttpBridge*>(http)->Release();
|
| }
|
|
|
|
|