| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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_ATTACHMENTS_ATTACHMENT_METADATA_H_ | 5 #ifndef COMPONENTS_SYNC_MODEL_ATTACHMENTS_ATTACHMENT_METADATA_H_ |
| 6 #define COMPONENTS_SYNC_API_ATTACHMENTS_ATTACHMENT_METADATA_H_ | 6 #define COMPONENTS_SYNC_MODEL_ATTACHMENTS_ATTACHMENT_METADATA_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "components/sync/api/attachments/attachment_id.h" | 12 #include "components/sync/model/attachments/attachment_id.h" |
| 13 | 13 |
| 14 namespace syncer { | 14 namespace syncer { |
| 15 | 15 |
| 16 // This class represents immutable Attachment metadata. | 16 // This class represents immutable Attachment metadata. |
| 17 // | 17 // |
| 18 // It is OK to copy and return AttachmentMetadata by value. | 18 // It is OK to copy and return AttachmentMetadata by value. |
| 19 class AttachmentMetadata { | 19 class AttachmentMetadata { |
| 20 public: | 20 public: |
| 21 AttachmentMetadata(const AttachmentId& id, size_t size); | 21 AttachmentMetadata(const AttachmentId& id, size_t size); |
| 22 ~AttachmentMetadata(); | 22 ~AttachmentMetadata(); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 34 // AttachmentId. AttachmentId knows the size of the attachment so | 34 // AttachmentId. AttachmentId knows the size of the attachment so |
| 35 // AttachmentMetadata may not be necessary (crbug/465375). | 35 // AttachmentMetadata may not be necessary (crbug/465375). |
| 36 AttachmentId id_; | 36 AttachmentId id_; |
| 37 size_t size_; | 37 size_t size_; |
| 38 }; | 38 }; |
| 39 | 39 |
| 40 typedef std::vector<AttachmentMetadata> AttachmentMetadataList; | 40 typedef std::vector<AttachmentMetadata> AttachmentMetadataList; |
| 41 | 41 |
| 42 } // namespace syncer | 42 } // namespace syncer |
| 43 | 43 |
| 44 #endif // COMPONENTS_SYNC_API_ATTACHMENTS_ATTACHMENT_METADATA_H_ | 44 #endif // COMPONENTS_SYNC_MODEL_ATTACHMENTS_ATTACHMENT_METADATA_H_ |
| OLD | NEW |