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

Side by Side Diff: sync/internal_api/syncapi_internal.h

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, 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sync/internal_api/sync_manager.cc ('k') | sync/internal_api/syncapi_internal.cc » ('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) 2012 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 #ifndef SYNC_INTERNAL_API_SYNCAPI_INTERNAL_H_ 5 #ifndef SYNC_INTERNAL_API_SYNCAPI_INTERNAL_H_
6 #define SYNC_INTERNAL_API_SYNCAPI_INTERNAL_H_ 6 #define SYNC_INTERNAL_API_SYNCAPI_INTERNAL_H_
7 7
8 // The functions defined are shared among some of the classes that implement 8 // The functions defined are shared among some of the classes that implement
9 // the internal csync. They are not to be used by clients of the API. 9 // the internal sync API. They are not to be used by clients of the API.
10 10
11 #include <string> 11 #include <string>
12 12
13 namespace csync {
14 class Cryptographer;
15 }
16
17 namespace sync_pb { 13 namespace sync_pb {
18 class EntitySpecifics; 14 class EntitySpecifics;
19 class PasswordSpecificsData; 15 class PasswordSpecificsData;
20 } 16 }
21 17
22 namespace csync { 18 namespace syncer {
19
20 class Cryptographer;
21
23 sync_pb::PasswordSpecificsData* DecryptPasswordSpecifics( 22 sync_pb::PasswordSpecificsData* DecryptPasswordSpecifics(
24 const sync_pb::EntitySpecifics& specifics, 23 const sync_pb::EntitySpecifics& specifics,
25 csync::Cryptographer* crypto); 24 syncer::Cryptographer* crypto);
26 25
27 void SyncAPINameToServerName(const std::string& csync_name, 26 void SyncAPINameToServerName(const std::string& syncer_name,
28 std::string* out); 27 std::string* out);
29 28
30 bool IsNameServerIllegalAfterTrimming(const std::string& name); 29 bool IsNameServerIllegalAfterTrimming(const std::string& name);
31 30
32 bool AreSpecificsEqual(const csync::Cryptographer* cryptographer, 31 bool AreSpecificsEqual(const syncer::Cryptographer* cryptographer,
33 const sync_pb::EntitySpecifics& left, 32 const sync_pb::EntitySpecifics& left,
34 const sync_pb::EntitySpecifics& right); 33 const sync_pb::EntitySpecifics& right);
35 } 34 } // namespace syncer
36 35
37 #endif // SYNC_INTERNAL_API_SYNCAPI_INTERNAL_H_ 36 #endif // SYNC_INTERNAL_API_SYNCAPI_INTERNAL_H_
OLDNEW
« no previous file with comments | « sync/internal_api/sync_manager.cc ('k') | sync/internal_api/syncapi_internal.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698