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

Unified Diff: sync/internal_api/http_bridge.cc

Issue 10698014: [Sync] Rename csync namespace to syncer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 8 years, 6 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: sync/internal_api/http_bridge.cc
diff --git a/sync/internal_api/http_bridge.cc b/sync/internal_api/http_bridge.cc
index 6aa6c4abb4a96be7b52a7493aed3e972d041f2ba..38223996864a7f01ed35fe8cae489779f38f1ff4 100644
--- a/sync/internal_api/http_bridge.cc
+++ b/sync/internal_api/http_bridge.cc
@@ -65,13 +65,13 @@ HttpBridgeFactory::HttpBridgeFactory(
HttpBridgeFactory::~HttpBridgeFactory() {
}
-csync::HttpPostProviderInterface* HttpBridgeFactory::Create() {
+syncer::HttpPostProviderInterface* HttpBridgeFactory::Create() {
HttpBridge* http = new HttpBridge(request_context_getter_);
http->AddRef();
return http;
}
-void HttpBridgeFactory::Destroy(csync::HttpPostProviderInterface* http) {
+void HttpBridgeFactory::Destroy(syncer::HttpPostProviderInterface* http) {
static_cast<HttpBridge*>(http)->Release();
}
« no previous file with comments | « sync/internal_api/debug_info_event_listener_unittest.cc ('k') | sync/internal_api/js_mutation_event_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698