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

Side by Side Diff: sync/engine/net/url_translator.cc

Issue 9699057: [Sync] Move 'sync' target to sync/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Tim's comments Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sync/engine/net/url_translator.h ('k') | sync/engine/nigori_util.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 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 // Contains the definition of a few helper functions used for generating sync 5 // Contains the definition of a few helper functions used for generating sync
6 // URLs. 6 // URLs.
7 7
8 #include "chrome/browser/sync/engine/net/url_translator.h" 8 #include "sync/engine/net/url_translator.h"
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/port.h" 11 #include "base/port.h"
12 #include "net/base/escape.h" 12 #include "net/base/escape.h"
13 13
14 using std::string; 14 using std::string;
15 15
16 namespace browser_sync { 16 namespace browser_sync {
17 17
18 namespace { 18 namespace {
(...skipping 20 matching lines...) Expand all
39 } 39 }
40 40
41 string MakeSyncQueryString(const string& client_id) { 41 string MakeSyncQueryString(const string& client_id) {
42 string query; 42 string query;
43 query += kParameterClientID; 43 query += kParameterClientID;
44 query += "=" + CgiEscapeString(client_id); 44 query += "=" + CgiEscapeString(client_id);
45 return query; 45 return query;
46 } 46 }
47 47
48 } // namespace browser_sync 48 } // namespace browser_sync
OLDNEW
« no previous file with comments | « sync/engine/net/url_translator.h ('k') | sync/engine/nigori_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698