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

Unified Diff: components/sync/engine/sync_auth_provider.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
« no previous file with comments | « components/sync/engine/non_blocking_sync_common.h ('k') | components/sync/engine/sync_engine.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/engine/sync_auth_provider.h
diff --git a/components/sync/engine/sync_auth_provider.h b/components/sync/engine/sync_auth_provider.h
index 3602c826baf6f82bafd8069d54deedeb11544e59..50d722faf47b0538831e2e8621c67a204497dfa8 100644
--- a/components/sync/engine/sync_auth_provider.h
+++ b/components/sync/engine/sync_auth_provider.h
@@ -17,9 +17,9 @@ namespace syncer {
// engine.
class SyncAuthProvider {
public:
- typedef base::Callback<void(const GoogleServiceAuthError& error,
- const std::string& token)>
- RequestTokenCallback;
+ using RequestTokenCallback =
+ base::Callback<void(const GoogleServiceAuthError& error,
+ const std::string& token)>;
virtual ~SyncAuthProvider() {}
« no previous file with comments | « components/sync/engine/non_blocking_sync_common.h ('k') | components/sync/engine/sync_engine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698