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/internal_api/base_transaction.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
« no previous file with comments | « sync/internal_api/base_node.cc ('k') | sync/internal_api/change_record.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/internal_api/base_transaction.cc
diff --git a/sync/internal_api/base_transaction.cc b/sync/internal_api/base_transaction.cc
index d199f30ab80e6f859ca690745d67487e195ff462..5b81136f53b36d7cf51611949907e097368cbe2d 100644
--- a/sync/internal_api/base_transaction.cc
+++ b/sync/internal_api/base_transaction.cc
@@ -7,9 +7,9 @@
#include "sync/syncable/directory.h"
#include "sync/util/cryptographer.h"
-using csync::Cryptographer;
+using syncer::Cryptographer;
-namespace csync {
+namespace syncer {
//////////////////////////////////////////////////////////////////////////
// BaseTransaction member definitions
@@ -20,13 +20,13 @@ BaseTransaction::BaseTransaction(UserShare* share) {
BaseTransaction::~BaseTransaction() {
}
-csync::Cryptographer* BaseTransaction::GetCryptographer() const {
+syncer::Cryptographer* BaseTransaction::GetCryptographer() const {
return directory_->GetCryptographer(this->GetWrappedTrans());
}
syncable::ModelTypeSet GetEncryptedTypes(
- const csync::BaseTransaction* trans) {
+ const syncer::BaseTransaction* trans) {
return trans->GetCryptographer()->GetEncryptedTypes();
}
-} // namespace csync
+} // namespace syncer
« no previous file with comments | « sync/internal_api/base_node.cc ('k') | sync/internal_api/change_record.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698