Index: components/sync/core_impl/syncapi_server_connection_manager.cc |
diff --git a/sync/internal_api/syncapi_server_connection_manager.cc b/components/sync/core_impl/syncapi_server_connection_manager.cc |
similarity index 90% |
rename from sync/internal_api/syncapi_server_connection_manager.cc |
rename to components/sync/core_impl/syncapi_server_connection_manager.cc |
index a54fcbc8ff6e03791c020e9f9c8e8abe293506b1..d2833334f93624754b0103a2f5ca5d47d1d80999 100644 |
--- a/sync/internal_api/syncapi_server_connection_manager.cc |
+++ b/components/sync/core_impl/syncapi_server_connection_manager.cc |
@@ -2,14 +2,14 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "sync/internal_api/syncapi_server_connection_manager.h" |
+#include "components/sync/core_impl/syncapi_server_connection_manager.h" |
#include <stdint.h> |
+#include "components/sync/core/http_post_provider_factory.h" |
+#include "components/sync/core/http_post_provider_interface.h" |
#include "net/base/net_errors.h" |
#include "net/http/http_status_code.h" |
-#include "sync/internal_api/public/http_post_provider_factory.h" |
-#include "sync/internal_api/public/http_post_provider_interface.h" |
namespace syncer { |
@@ -88,10 +88,7 @@ SyncAPIServerConnectionManager::SyncAPIServerConnectionManager( |
bool use_ssl, |
HttpPostProviderFactory* factory, |
CancelationSignal* cancelation_signal) |
- : ServerConnectionManager(server, |
- port, |
- use_ssl, |
- cancelation_signal), |
+ : ServerConnectionManager(server, port, use_ssl, cancelation_signal), |
post_provider_factory_(factory) { |
DCHECK(post_provider_factory_.get()); |
} |