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

Side by Side Diff: components/sync/api/attachments/attachment_metadata.h

Issue 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. Created 4 years, 2 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
(Empty)
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.
4
5 #ifndef COMPONENTS_SYNC_API_ATTACHMENTS_ATTACHMENT_METADATA_H_
6 #define COMPONENTS_SYNC_API_ATTACHMENTS_ATTACHMENT_METADATA_H_
7
8 #include <stddef.h>
9
10 #include <vector>
11
12 #include "components/sync/api/attachments/attachment_id.h"
13
14 namespace syncer {
15
16 // This class represents immutable Attachment metadata.
17 //
18 // It is OK to copy and return AttachmentMetadata by value.
19 class AttachmentMetadata {
20 public:
21 AttachmentMetadata(const AttachmentId& id, size_t size);
22 ~AttachmentMetadata();
23
24 // Default copy and assignment are welcome.
25
26 // Returns this attachment's id.
27 const AttachmentId& GetId() const;
28
29 // Returns this attachment's size in bytes.
30 size_t GetSize() const;
31
32 private:
33 // TODO(maniscalco): Reconcile AttachmentMetadata and
34 // AttachmentId. AttachmentId knows the size of the attachment so
35 // AttachmentMetadata may not be necessary (crbug/465375).
36 AttachmentId id_;
37 size_t size_;
38 };
39
40 typedef std::vector<AttachmentMetadata> AttachmentMetadataList;
41
42 } // namespace syncer
43
44 #endif // COMPONENTS_SYNC_API_ATTACHMENTS_ATTACHMENT_METADATA_H_
OLDNEW
« no previous file with comments | « components/sync/api/attachments/attachment_id_unittest.cc ('k') | components/sync/api/attachments/attachment_metadata.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698