| Index: sync/syncable/model_type.cc
|
| diff --git a/sync/syncable/model_type.cc b/sync/syncable/model_type.cc
|
| index 19a158845a0596a08df5a742e76c35d27e40e014..cbed007b66957be706d14cc9a81185131a0aa08a 100644
|
| --- a/sync/syncable/model_type.cc
|
| +++ b/sync/syncable/model_type.cc
|
| @@ -228,6 +228,10 @@ bool ShouldMaintainPosition(ModelType model_type) {
|
| return model_type == BOOKMARKS;
|
| }
|
|
|
| +bool IsInternalType(ModelType model_type) {
|
| + return model_type == NIGORI;
|
| +}
|
| +
|
| const char* ModelTypeToString(ModelType model_type) {
|
| // This is used in serialization routines as well as for displaying debug
|
| // information. Do not attempt to change these string values unless you know
|
|
|