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

Unified Diff: components/sync/driver/shared_change_processor.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/driver/shared_change_processor.h
diff --git a/components/sync/driver/shared_change_processor.h b/components/sync/driver/shared_change_processor.h
index 4b8aa9681bd61bd6aa526dde85282a84b647376b..280ad5e2be112469e285fa5292498e6323535c76 100644
--- a/components/sync/driver/shared_change_processor.h
+++ b/components/sync/driver/shared_change_processor.h
@@ -53,10 +53,10 @@ struct UserShare;
class SharedChangeProcessor
: public base::RefCountedThreadSafe<SharedChangeProcessor> {
public:
- typedef base::Callback<void(DataTypeController::ConfigureResult start_result,
- const SyncMergeResult& local_merge_result,
- const SyncMergeResult& syncer_merge_result)>
- StartDoneCallback;
+ using StartDoneCallback =
+ base::Callback<void(DataTypeController::ConfigureResult start_result,
+ const SyncMergeResult& local_merge_result,
+ const SyncMergeResult& syncer_merge_result)>;
// Create an uninitialized SharedChangeProcessor.
explicit SharedChangeProcessor(ModelType type);
« no previous file with comments | « components/sync/driver/glue/sync_backend_host_impl.h ('k') | components/sync/driver/sync_api_component_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698