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

Unified Diff: components/sync/engine/attachments/in_memory_attachment_store.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 side-by-side diff with in-line comments
Download patch
Index: components/sync/engine/attachments/in_memory_attachment_store.h
diff --git a/components/sync/engine/attachments/in_memory_attachment_store.h b/components/sync/engine/attachments/in_memory_attachment_store.h
index 6072096160c778260b98cc1afead3d1176e8dd10..831d647539a2b97698cac8d032fb03845a1b2551 100644
--- a/components/sync/engine/attachments/in_memory_attachment_store.h
+++ b/components/sync/engine/attachments/in_memory_attachment_store.h
@@ -64,7 +64,7 @@ class InMemoryAttachmentStore : public AttachmentStoreBackend,
std::set<AttachmentStore::Component> components;
};
- typedef std::map<AttachmentId, AttachmentEntry> AttachmentEntryMap;
+ using AttachmentEntryMap = std::map<AttachmentId, AttachmentEntry>;
AttachmentEntryMap attachments_;
DISALLOW_COPY_AND_ASSIGN(InMemoryAttachmentStore);
« no previous file with comments | « components/sync/engine/attachments/attachment_uploader.h ('k') | components/sync/engine/model_safe_worker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698