| 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
|
|
|