| 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 #include "sync/internal_api/syncapi_server_connection_manager.h" | 5 #include "sync/internal_api/syncapi_server_connection_manager.h" |
| 6 | 6 |
| 7 #include "net/base/net_errors.h" | 7 #include "net/base/net_errors.h" |
| 8 #include "net/http/http_status_code.h" | 8 #include "net/http/http_status_code.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" |
| 11 | 11 |
| 12 using csync::HttpResponse; | 12 using syncer::HttpResponse; |
| 13 | 13 |
| 14 namespace csync { | 14 namespace syncer { |
| 15 | 15 |
| 16 SyncAPIBridgedConnection::SyncAPIBridgedConnection( | 16 SyncAPIBridgedConnection::SyncAPIBridgedConnection( |
| 17 csync::ServerConnectionManager* scm, | 17 syncer::ServerConnectionManager* scm, |
| 18 HttpPostProviderFactory* factory) | 18 HttpPostProviderFactory* factory) |
| 19 : Connection(scm), factory_(factory) { | 19 : Connection(scm), factory_(factory) { |
| 20 post_provider_ = factory_->Create(); | 20 post_provider_ = factory_->Create(); |
| 21 } | 21 } |
| 22 | 22 |
| 23 SyncAPIBridgedConnection::~SyncAPIBridgedConnection() { | 23 SyncAPIBridgedConnection::~SyncAPIBridgedConnection() { |
| 24 DCHECK(post_provider_); | 24 DCHECK(post_provider_); |
| 25 factory_->Destroy(post_provider_); | 25 factory_->Destroy(post_provider_); |
| 26 post_provider_ = NULL; | 26 post_provider_ = NULL; |
| 27 } | 27 } |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 int port, | 90 int port, |
| 91 bool use_ssl, | 91 bool use_ssl, |
| 92 HttpPostProviderFactory* factory) | 92 HttpPostProviderFactory* factory) |
| 93 : ServerConnectionManager(server, port, use_ssl), | 93 : ServerConnectionManager(server, port, use_ssl), |
| 94 post_provider_factory_(factory) { | 94 post_provider_factory_(factory) { |
| 95 DCHECK(post_provider_factory_.get()); | 95 DCHECK(post_provider_factory_.get()); |
| 96 } | 96 } |
| 97 | 97 |
| 98 SyncAPIServerConnectionManager::~SyncAPIServerConnectionManager() {} | 98 SyncAPIServerConnectionManager::~SyncAPIServerConnectionManager() {} |
| 99 | 99 |
| 100 csync::ServerConnectionManager::Connection* | 100 syncer::ServerConnectionManager::Connection* |
| 101 SyncAPIServerConnectionManager::MakeConnection() { | 101 SyncAPIServerConnectionManager::MakeConnection() { |
| 102 return new SyncAPIBridgedConnection(this, post_provider_factory_.get()); | 102 return new SyncAPIBridgedConnection(this, post_provider_factory_.get()); |
| 103 } | 103 } |
| 104 | 104 |
| 105 } // namespace csync | 105 } // namespace syncer |
| OLD | NEW |