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

Unified Diff: base/task_scheduler/task.h

Issue 2397523002: TaskScheduler: Make Task::traits const. (Closed)
Patch Set: Created 4 years, 2 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 | « no previous file | base/task_scheduler/task.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/task_scheduler/task.h
diff --git a/base/task_scheduler/task.h b/base/task_scheduler/task.h
index ee9f7a4c23636e84c3508e96725f28a62c90b117..b2fa7661b569686767e013af7c6c1d23559d283e 100644
--- a/base/task_scheduler/task.h
+++ b/base/task_scheduler/task.h
@@ -29,12 +29,12 @@ struct BASE_EXPORT Task : public PendingTask {
// automatically adjusted to SKIP_ON_SHUTDOWN.
Task(const tracked_objects::Location& posted_from,
const Closure& task,
- const TaskTraits& traits_in,
+ const TaskTraits& traits,
const TimeDelta& delay);
~Task();
// The TaskTraits of this task.
- TaskTraits traits;
+ const TaskTraits traits;
// The time at which the task was inserted in its sequence. For an undelayed
// task, this happens at post time. For a delayed task, this happens some
« no previous file with comments | « no previous file | base/task_scheduler/task.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698