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

Unified Diff: components/drive/job_scheduler.h

Issue 2496653002: Part 2 of base::IDMap refactor to eliminate IDMapOwnPointer/IDMapExternalPointer modes (Closed)
Patch Set: typedefs => using statements, update comments in base/id_map.h Created 4 years 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/drive/job_scheduler.h
diff --git a/components/drive/job_scheduler.h b/components/drive/job_scheduler.h
index 35f26b4b0fc0f35ec435b811f3d29c3a2defe967..bcd3855566f138678a75bae4b67e8e0daf74200d 100644
--- a/components/drive/job_scheduler.h
+++ b/components/drive/job_scheduler.h
@@ -382,7 +382,7 @@ class JobScheduler
std::unique_ptr<JobQueue> queue_[NUM_QUEUES];
// The list of queued job info indexed by job IDs.
- typedef IDMap<JobEntry, IDMapOwnPointer> JobIDMap;
+ using JobIDMap = IDMap<std::unique_ptr<JobEntry>>;
JobIDMap job_map_;
// The list of observers for the scheduler.
« no previous file with comments | « chrome/renderer/media/cast_ipc_dispatcher.h ('k') | components/gcm_driver/instance_id/instance_id_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698