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

Unified Diff: components/sync/engine/sync_engine.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/sync_auth_provider.h ('k') | components/sync/engine/sync_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/engine/sync_engine.h
diff --git a/components/sync/engine/sync_engine.h b/components/sync/engine/sync_engine.h
index 03eadfa0e20397acc5e826d7b9901af66077d572..581c74a00333948f540d96b5d79771da6cf6270f 100644
--- a/components/sync/engine/sync_engine.h
+++ b/components/sync/engine/sync_engine.h
@@ -42,10 +42,10 @@ class UnrecoverableErrorHandler;
// interface will handle crossing threads if necessary.
class SyncEngine : public ModelTypeConfigurer {
public:
- typedef SyncStatus Status;
- typedef base::Callback<std::unique_ptr<HttpPostProviderFactory>(
- CancelationSignal*)>
- HttpPostProviderFactoryGetter;
+ using Status = SyncStatus;
+ using HttpPostProviderFactoryGetter =
+ base::Callback<std::unique_ptr<HttpPostProviderFactory>(
+ CancelationSignal*)>;
// Utility struct for holding initialization options.
struct InitParams {
« no previous file with comments | « components/sync/engine/sync_auth_provider.h ('k') | components/sync/engine/sync_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698