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

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

Issue 2689773002: [Sync] Replace typedef with using. (Closed)
Patch Set: [Sync] Replace typedef with using. Created 3 years, 10 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 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_MODEL_ATTACHMENTS_ATTACHMENT_METADATA_H_ 5 #ifndef COMPONENTS_SYNC_MODEL_ATTACHMENTS_ATTACHMENT_METADATA_H_
6 #define COMPONENTS_SYNC_MODEL_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>
(...skipping 19 matching lines...) Expand all
30 size_t GetSize() const; 30 size_t GetSize() const;
31 31
32 private: 32 private:
33 // TODO(maniscalco): Reconcile AttachmentMetadata and 33 // TODO(maniscalco): Reconcile AttachmentMetadata and
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 using AttachmentMetadataList = std::vector<AttachmentMetadata>;
41 41
42 } // namespace syncer 42 } // namespace syncer
43 43
44 #endif // COMPONENTS_SYNC_MODEL_ATTACHMENTS_ATTACHMENT_METADATA_H_ 44 #endif // COMPONENTS_SYNC_MODEL_ATTACHMENTS_ATTACHMENT_METADATA_H_
OLDNEW
« no previous file with comments | « components/sync/model/attachments/attachment_id.h ('k') | components/sync/model/attachments/attachment_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698