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

Unified Diff: components/sync/engine_impl/attachments/attachment_downloader_impl_unittest.cc

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_impl/attachments/attachment_downloader_impl_unittest.cc
diff --git a/components/sync/engine_impl/attachments/attachment_downloader_impl_unittest.cc b/components/sync/engine_impl/attachments/attachment_downloader_impl_unittest.cc
index 321ed40ecf89b3df67a9f5565d21f0b0f27092f1..5c8013067b7da9054cef784c265dbccb04d5cc15 100644
--- a/components/sync/engine_impl/attachments/attachment_downloader_impl_unittest.cc
+++ b/components/sync/engine_impl/attachments/attachment_downloader_impl_unittest.cc
@@ -144,8 +144,8 @@ OAuth2TokenService* TokenServiceProvider::GetTokenService() {
class AttachmentDownloaderImplTest : public testing::Test {
protected:
- typedef std::map<AttachmentId, AttachmentDownloader::DownloadResult>
- ResultsMap;
+ using ResultsMap =
+ std::map<AttachmentId, AttachmentDownloader::DownloadResult>;
enum HashHeaderType {
HASH_HEADER_NONE,

Powered by Google App Engine
This is Rietveld 408576698