Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(125)

Side by Side Diff: components/sync/api/metadata_change_list.h

Issue 2222373003: [Sync] Adding storage key concept for ModelTypeServices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing redundant hash value. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_API_METADATA_CHANGE_LIST_H_ 5 #ifndef COMPONENTS_SYNC_API_METADATA_CHANGE_LIST_H_
6 #define COMPONENTS_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 "components/sync/base/sync_export.h" 10 #include "components/sync/base/sync_export.h"
(...skipping 22 matching lines...) Expand all
33 virtual void UpdateDataTypeState( 33 virtual void UpdateDataTypeState(
34 const sync_pb::DataTypeState& data_type_state) = 0; 34 const sync_pb::DataTypeState& data_type_state) = 0;
35 35
36 // Requests DataTypeState to be cleared from the storage. 36 // Requests DataTypeState to be cleared from the storage.
37 virtual void ClearDataTypeState() = 0; 37 virtual void ClearDataTypeState() = 0;
38 38
39 // Requests metadata entry to be updated in the storage. 39 // Requests metadata entry to be updated in the storage.
40 // Please note that the update might contain a deleted entry if 40 // Please note that the update might contain a deleted entry if
41 // metadata.is_deleted() is true (as opposed to clearing the entry from the 41 // metadata.is_deleted() is true (as opposed to clearing the entry from the
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& storage_key,
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& storage_key) = 0;
48 }; 48 };
49 49
50 } // namespace syncer_v2 50 } // namespace syncer_v2
51 51
52 #endif // COMPONENTS_SYNC_API_METADATA_CHANGE_LIST_H_ 52 #endif // COMPONENTS_SYNC_API_METADATA_CHANGE_LIST_H_
OLDNEW
« no previous file with comments | « components/sync/api/metadata_batch.cc ('k') | components/sync/api/model_type_change_processor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698