| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_SYNC_MODEL_SIMPLE_METADATA_CHANGE_LIST_H_ | 5 #ifndef COMPONENTS_SYNC_MODEL_SIMPLE_METADATA_CHANGE_LIST_H_ |
| 6 #define COMPONENTS_SYNC_MODEL_SIMPLE_METADATA_CHANGE_LIST_H_ | 6 #define COMPONENTS_SYNC_MODEL_SIMPLE_METADATA_CHANGE_LIST_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "components/sync/core/non_blocking_sync_common.h" | 12 #include "components/sync/engine/non_blocking_sync_common.h" |
| 13 #include "components/sync/model/metadata_change_list.h" | 13 #include "components/sync/model/metadata_change_list.h" |
| 14 #include "components/sync/model/model_type_store.h" | 14 #include "components/sync/model/model_type_store.h" |
| 15 #include "components/sync/protocol/entity_metadata.pb.h" | 15 #include "components/sync/protocol/entity_metadata.pb.h" |
| 16 #include "components/sync/protocol/model_type_state.pb.h" | 16 #include "components/sync/protocol/model_type_state.pb.h" |
| 17 | 17 |
| 18 namespace syncer { | 18 namespace syncer { |
| 19 | 19 |
| 20 // A MetadataChangeList implementation that is meant to be used in combination | 20 // A MetadataChangeList implementation that is meant to be used in combination |
| 21 // with a ModelTypeStore. It accumulates changes in member fields, and then when | 21 // with a ModelTypeStore. It accumulates changes in member fields, and then when |
| 22 // requested transfers them to the store/write batch. | 22 // requested transfers them to the store/write batch. |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 ModelTypeStore::WriteBatch* write_batch); | 57 ModelTypeStore::WriteBatch* write_batch); |
| 58 | 58 |
| 59 private: | 59 private: |
| 60 MetadataChanges metadata_changes_; | 60 MetadataChanges metadata_changes_; |
| 61 std::unique_ptr<ModelTypeStateChange> state_change_; | 61 std::unique_ptr<ModelTypeStateChange> state_change_; |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 } // namespace syncer | 64 } // namespace syncer |
| 65 | 65 |
| 66 #endif // COMPONENTS_SYNC_MODEL_SIMPLE_METADATA_CHANGE_LIST_H_ | 66 #endif // COMPONENTS_SYNC_MODEL_SIMPLE_METADATA_CHANGE_LIST_H_ |
| OLD | NEW |