| Index: sync/internal_api/write_node.cc
|
| diff --git a/sync/internal_api/write_node.cc b/sync/internal_api/write_node.cc
|
| index bda63881310ded0172fa1f61e33a674b293c67cd..17fccd02b2a50510a866d6417c179f4b10e24b10 100644
|
| --- a/sync/internal_api/write_node.cc
|
| +++ b/sync/internal_api/write_node.cc
|
| @@ -21,13 +21,13 @@
|
| #include "sync/syncable/mutable_entry.h"
|
| #include "sync/util/cryptographer.h"
|
|
|
| -using csync::Cryptographer;
|
| +using syncer::Cryptographer;
|
| using std::string;
|
| using std::vector;
|
| using syncable::kEncryptedString;
|
| using syncable::SPECIFICS;
|
|
|
| -namespace csync {
|
| +namespace syncer {
|
|
|
| static const char kDefaultNameForNewNodes[] = " ";
|
|
|
| @@ -205,7 +205,7 @@ void WriteNode::SetEntitySpecifics(
|
| if (GetModelType() != syncable::UNSPECIFIED) {
|
| DCHECK_EQ(new_specifics_type, GetModelType());
|
| }
|
| - csync::Cryptographer* cryptographer =
|
| + syncer::Cryptographer* cryptographer =
|
| GetTransaction()->GetCryptographer();
|
|
|
| // Preserve unknown fields.
|
| @@ -509,4 +509,4 @@ void WriteNode::MarkForSyncing() {
|
| syncable::MarkForSyncing(entry_);
|
| }
|
|
|
| -} // namespace csync
|
| +} // namespace syncer
|
|
|