| Index: chrome/browser/sync/engine/model_safe_worker.cc
|
| diff --git a/chrome/browser/sync/engine/model_safe_worker.cc b/chrome/browser/sync/engine/model_safe_worker.cc
|
| index 4ac96fb70f77e4b88dfef51663ce0854f0ffa2c2..3ae485d870858929308aabd744549e0eb6ca17e7 100644
|
| --- a/chrome/browser/sync/engine/model_safe_worker.cc
|
| +++ b/chrome/browser/sync/engine/model_safe_worker.cc
|
| @@ -30,12 +30,12 @@ std::string ModelSafeRoutingInfoToString(
|
| return json;
|
| }
|
|
|
| -syncable::ModelTypeSet GetRoutingInfoTypes(
|
| +syncable::ModelEnumSet GetRoutingInfoTypes(
|
| const ModelSafeRoutingInfo& routing_info) {
|
| - syncable::ModelTypeSet types;
|
| + syncable::ModelEnumSet types;
|
| for (ModelSafeRoutingInfo::const_iterator it = routing_info.begin();
|
| it != routing_info.end(); ++it) {
|
| - types.insert(it->first);
|
| + types.Put(it->first);
|
| }
|
| return types;
|
| }
|
|
|