| Index: sync/api/sync_change.cc
|
| diff --git a/sync/api/sync_change.cc b/sync/api/sync_change.cc
|
| index 49a387b6045b1e6e654ba9ab36efe472c237f408..64da5b797dcbe11d1c38f62d9ab26ce5aaa8ba17 100644
|
| --- a/sync/api/sync_change.cc
|
| +++ b/sync/api/sync_change.cc
|
| @@ -25,11 +25,11 @@ bool SyncChange::IsValid() const {
|
|
|
| // Data from the syncer must always have valid specifics.
|
| if (!sync_data_.IsLocal())
|
| - return syncable::IsRealDataType(sync_data_.GetDataType());
|
| + return syncer::IsRealDataType(sync_data_.GetDataType());
|
|
|
| // Local changes must always have a tag and specify a valid datatype.
|
| if (sync_data_.GetTag().empty() ||
|
| - !syncable::IsRealDataType(sync_data_.GetDataType())) {
|
| + !syncer::IsRealDataType(sync_data_.GetDataType())) {
|
| return false;
|
| }
|
|
|
|
|