| 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 SYNC_API_METADATA_CHANGE_LIST_H_ | 5 #ifndef COMPONENTS_SYNC_API_METADATA_CHANGE_LIST_H_ |
| 6 #define SYNC_API_METADATA_CHANGE_LIST_H_ | 6 #define COMPONENTS_SYNC_API_METADATA_CHANGE_LIST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "sync/base/sync_export.h" | 10 #include "components/sync/base/sync_export.h" |
| 11 | 11 |
| 12 namespace sync_pb { | 12 namespace sync_pb { |
| 13 class DataTypeState; | 13 class DataTypeState; |
| 14 class EntityMetadata; | 14 class EntityMetadata; |
| 15 } // namespace sync_pb | 15 } // namespace sync_pb |
| 16 | 16 |
| 17 namespace syncer_v2 { | 17 namespace syncer_v2 { |
| 18 | 18 |
| 19 // Interface used by the processor and service to communicate about metadata. | 19 // Interface used by the processor and service to communicate about metadata. |
| 20 // The purpose of the interface is to record changes to data type global and | 20 // The purpose of the interface is to record changes to data type global and |
| (...skipping 21 matching lines...) Expand all Loading... |
| 42 // storage completely by calling the Clear method). | 42 // storage completely by calling the Clear method). |
| 43 virtual void UpdateMetadata(const std::string& client_tag, | 43 virtual void UpdateMetadata(const std::string& client_tag, |
| 44 const sync_pb::EntityMetadata& metadata) = 0; | 44 const sync_pb::EntityMetadata& metadata) = 0; |
| 45 | 45 |
| 46 // Requests metadata entry to be cleared from the storage. | 46 // Requests metadata entry to be cleared from the storage. |
| 47 virtual void ClearMetadata(const std::string& client_tag) = 0; | 47 virtual void ClearMetadata(const std::string& client_tag) = 0; |
| 48 }; | 48 }; |
| 49 | 49 |
| 50 } // namespace syncer_v2 | 50 } // namespace syncer_v2 |
| 51 | 51 |
| 52 #endif // SYNC_API_METADATA_CHANGE_LIST_H_ | 52 #endif // COMPONENTS_SYNC_API_METADATA_CHANGE_LIST_H_ |
| OLD | NEW |