| Index: sync/notifier/invalidation_util.cc
|
| diff --git a/sync/notifier/invalidation_util.cc b/sync/notifier/invalidation_util.cc
|
| index 0973b7d5579dae427b01d160ec0a21b61a18e73b..5574a8c60ce531be47546db2496c1169b53d1462 100644
|
| --- a/sync/notifier/invalidation_util.cc
|
| +++ b/sync/notifier/invalidation_util.cc
|
| @@ -17,10 +17,10 @@ bool ObjectIdLessThan::operator()(const invalidation::ObjectId& lhs,
|
| (lhs.source() == rhs.source() && lhs.name() < rhs.name());
|
| }
|
|
|
| -bool RealModelTypeToObjectId(syncable::ModelType model_type,
|
| +bool RealModelTypeToObjectId(syncer::ModelType model_type,
|
| invalidation::ObjectId* object_id) {
|
| std::string notification_type;
|
| - if (!syncable::RealModelTypeToNotificationType(
|
| + if (!syncer::RealModelTypeToNotificationType(
|
| model_type, ¬ification_type)) {
|
| return false;
|
| }
|
| @@ -30,9 +30,9 @@ bool RealModelTypeToObjectId(syncable::ModelType model_type,
|
| }
|
|
|
| bool ObjectIdToRealModelType(const invalidation::ObjectId& object_id,
|
| - syncable::ModelType* model_type) {
|
| + syncer::ModelType* model_type) {
|
| return
|
| - syncable::NotificationTypeToRealModelType(
|
| + syncer::NotificationTypeToRealModelType(
|
| object_id.name(), model_type);
|
| }
|
|
|
|
|