Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: components/sync/core_impl/syncapi_server_connection_manager.cc

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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());
}

Powered by Google App Engine
This is Rietveld 408576698