| Index: chrome/browser/sync/invalidations/invalidator_storage.cc
|
| diff --git a/chrome/browser/sync/invalidations/invalidator_storage.cc b/chrome/browser/sync/invalidations/invalidator_storage.cc
|
| index 533fb8f191d2241ee98026c6f3852a35a1569220..971e5a291f04b1990476f727f8b840fbc53732e7 100644
|
| --- a/chrome/browser/sync/invalidations/invalidator_storage.cc
|
| +++ b/chrome/browser/sync/invalidations/invalidator_storage.cc
|
| @@ -13,7 +13,7 @@
|
| #include "chrome/common/pref_names.h"
|
| #include "sync/internal_api/public/syncable/model_type.h"
|
|
|
| -using csync::InvalidationVersionMap;
|
| +using syncer::InvalidationVersionMap;
|
|
|
| namespace browser_sync {
|
|
|
| @@ -203,7 +203,7 @@ void InvalidatorStorage::DeserializeMap(
|
| continue;
|
| }
|
| invalidation::ObjectId id;
|
| - if (!csync::RealModelTypeToObjectId(model_type, &id)) {
|
| + if (!syncer::RealModelTypeToObjectId(model_type, &id)) {
|
| DLOG(WARNING) << "Invalid model type: " << model_type;
|
| continue;
|
| }
|
|
|