| Index: sync/sessions/ordered_commit_set.cc
|
| diff --git a/sync/sessions/ordered_commit_set.cc b/sync/sessions/ordered_commit_set.cc
|
| index 91bc5e296df4bd33b31157c91325484ff2153b5b..1d13c09ba50f3974ac6d4594a8633330606aa9c1 100644
|
| --- a/sync/sessions/ordered_commit_set.cc
|
| +++ b/sync/sessions/ordered_commit_set.cc
|
| @@ -8,11 +8,11 @@
|
|
|
| #include "base/logging.h"
|
|
|
| -namespace csync {
|
| +namespace syncer {
|
| namespace sessions {
|
|
|
| OrderedCommitSet::OrderedCommitSet(
|
| - const csync::ModelSafeRoutingInfo& routes)
|
| + const syncer::ModelSafeRoutingInfo& routes)
|
| : routes_(routes) {
|
| }
|
|
|
| @@ -32,7 +32,7 @@ void OrderedCommitSet::AddCommitItem(const int64 metahandle,
|
| }
|
|
|
| const OrderedCommitSet::Projection& OrderedCommitSet::GetCommitIdProjection(
|
| - csync::ModelSafeGroup group) const {
|
| + syncer::ModelSafeGroup group) const {
|
| Projections::const_iterator i = projections_.find(group);
|
| DCHECK(i != projections_.end());
|
| return i->second;
|
| @@ -124,5 +124,5 @@ void OrderedCommitSet::operator=(const OrderedCommitSet& other) {
|
| }
|
|
|
| } // namespace sessions
|
| -} // namespace csync
|
| +} // namespace syncer
|
|
|
|
|