summaryrefslogtreecommitdiffstats
path: root/sync/internal_api/public/read_transaction.h
diff options
context:
space:
mode:
Diffstat (limited to 'sync/internal_api/public/read_transaction.h')
-rw-r--r--sync/internal_api/public/read_transaction.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/sync/internal_api/public/read_transaction.h b/sync/internal_api/public/read_transaction.h
index 2084b9a..c75d16a 100644
--- a/sync/internal_api/public/read_transaction.h
+++ b/sync/internal_api/public/read_transaction.h
@@ -46,9 +46,12 @@ class SYNC_EXPORT ReadTransaction : public BaseTransaction {
void GetDataTypeContext(ModelType type,
sync_pb::DataTypeContext* context) const;
- // Clears |id_set| and fills it with the ids of attachments that need to be
+ // Clear |id_set| and fill it with the ids of attachments that need to be
// uploaded to the sync server.
- void GetAttachmentIdsToUpload(ModelType type, AttachmentIdSet* id_set);
+ void GetAttachmentIdsToUpload(ModelType type, AttachmentIdSet* id_set) const;
+
+ // Return the current (opaque) store birthday.
+ std::string GetStoreBirthday() const;
private:
void* operator new(size_t size); // Transaction is meant for stack use only.