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

Unified Diff: components/sync/engine/attachments/attachment_uploader.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/attachment_uploader.h
diff --git a/components/sync/engine/attachments/attachment_uploader.h b/components/sync/engine/attachments/attachment_uploader.h
index e5c93e567d0cc573177bd48b6ba3477cd914762b..f086c6f1c6ae628b2cce3c131599c77c9a969b04 100644
--- a/components/sync/engine/attachments/attachment_uploader.h
+++ b/components/sync/engine/attachments/attachment_uploader.h
@@ -30,8 +30,8 @@ class AttachmentUploader {
UPLOAD_UNSPECIFIED_ERROR, // An unspecified error occurred.
};
- typedef base::Callback<void(const UploadResult&, const AttachmentId&)>
- UploadCallback;
+ using UploadCallback =
+ base::Callback<void(const UploadResult&, const AttachmentId&)>;
virtual ~AttachmentUploader();

Powered by Google App Engine
This is Rietveld 408576698