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

Unified Diff: sync/engine/net/url_translator.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
« no previous file with comments | « sync/engine/net/url_translator.h ('k') | sync/engine/non_blocking_type_commit_contribution.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/engine/net/url_translator.cc
diff --git a/sync/engine/net/url_translator.cc b/sync/engine/net/url_translator.cc
deleted file mode 100644
index a6fffdfc0ff159fc67c465d6837543ac8ef760a7..0000000000000000000000000000000000000000
--- a/sync/engine/net/url_translator.cc
+++ /dev/null
@@ -1,55 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-//
-// Contains the definition of a few helper functions used for generating sync
-// URLs.
-
-#include "sync/engine/net/url_translator.h"
-
-#include "net/base/escape.h"
-
-using std::string;
-
-namespace syncer {
-
-namespace {
-// Parameters that the server understands. (here, a-Z)
-const char kParameterClient[] = "client";
-const char kParameterClientID[] = "client_id";
-
-#if defined(GOOGLE_CHROME_BUILD)
-const char kClientName[] = "Google Chrome";
-#else
-const char kClientName[] = "Chromium";
-#endif // defined(GOOGLE_CHROME_BUILD)
-} // namespace
-
-// Convenience wrappers around CgiEscapePath().
-string CgiEscapeString(const char* src) {
- return CgiEscapeString(string(src));
-}
-
-string CgiEscapeString(const string& src) {
- return net::EscapeUrlEncodedData(src, true);
-}
-
-// This method appends the query string to the sync server path.
-string MakeSyncServerPath(const string& path, const string& query_string) {
- string result = path;
- result.append("?");
- result.append(query_string);
- return result;
-}
-
-string MakeSyncQueryString(const string& client_id) {
- string query;
- query += kParameterClient;
- query += "=" + CgiEscapeString(kClientName);
- query += "&";
- query += kParameterClientID;
- query += "=" + CgiEscapeString(client_id);
- return query;
-}
-
-} // namespace syncer
« no previous file with comments | « sync/engine/net/url_translator.h ('k') | sync/engine/non_blocking_type_commit_contribution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698