Support the Service-Worker-Allowed header
[chromium-blink-merge.git] / sync / api / attachments / attachment_metadata.h
blob10761f838212df31222c658e09be1e8b2e7b66c6
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef SYNC_API_ATTACHMENTS_ATTACHMENT_METADATA_H_
6 #define SYNC_API_ATTACHMENTS_ATTACHMENT_METADATA_H_
8 #include <vector>
10 #include "base/basictypes.h"
11 #include "sync/api/attachments/attachment_id.h"
12 #include "sync/base/sync_export.h"
14 namespace syncer {
16 // This class represents immutable Attachment metadata.
18 // It is OK to copy and return AttachmentMetadata by value.
19 class SYNC_EXPORT AttachmentMetadata {
20 public:
21 AttachmentMetadata(const AttachmentId& id, size_t size);
22 ~AttachmentMetadata();
24 // Default copy and assignment are welcome.
26 // Returns this attachment's id.
27 const AttachmentId& GetId() const;
29 // Returns this attachment's size in bytes.
30 size_t GetSize() const;
32 private:
33 AttachmentId id_;
34 size_t size_;
37 typedef std::vector<syncer::AttachmentMetadata> AttachmentMetadataList;
39 } // namespace syncer
41 #endif // SYNC_API_ATTACHMENTS_ATTACHMENT_METADATA_H_