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