| Index: sync/internal_api/syncapi_server_connection_manager.cc
|
| diff --git a/sync/internal_api/syncapi_server_connection_manager.cc b/sync/internal_api/syncapi_server_connection_manager.cc
|
| index 63f96c94d241bf486ef3a8999139bf862f4fe8db..319a5aad5220e2672527e3a26e48e06e15eda4ec 100644
|
| --- a/sync/internal_api/syncapi_server_connection_manager.cc
|
| +++ b/sync/internal_api/syncapi_server_connection_manager.cc
|
| @@ -9,12 +9,10 @@
|
| #include "sync/internal_api/public/http_post_provider_factory.h"
|
| #include "sync/internal_api/public/http_post_provider_interface.h"
|
|
|
| -using syncer::HttpResponse;
|
| -
|
| namespace syncer {
|
|
|
| SyncAPIBridgedConnection::SyncAPIBridgedConnection(
|
| - syncer::ServerConnectionManager* scm,
|
| + ServerConnectionManager* scm,
|
| HttpPostProviderFactory* factory)
|
| : Connection(scm), factory_(factory) {
|
| post_provider_ = factory_->Create();
|
| @@ -97,7 +95,7 @@ SyncAPIServerConnectionManager::SyncAPIServerConnectionManager(
|
|
|
| SyncAPIServerConnectionManager::~SyncAPIServerConnectionManager() {}
|
|
|
| -syncer::ServerConnectionManager::Connection*
|
| +ServerConnectionManager::Connection*
|
| SyncAPIServerConnectionManager::MakeConnection() {
|
| return new SyncAPIBridgedConnection(this, post_provider_factory_.get());
|
| }
|
|
|