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

Unified Diff: third_party/WebKit/Source/platform/scheduler/child/scheduler_helper.cc

Issue 2464853002: Add crash keys to TaskQueueManager::ProcessTaskFromWorkQueue (Closed)
Patch Set: Added missing periods Created 4 years, 1 month 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: third_party/WebKit/Source/platform/scheduler/child/scheduler_helper.cc
diff --git a/third_party/WebKit/Source/platform/scheduler/child/scheduler_helper.cc b/third_party/WebKit/Source/platform/scheduler/child/scheduler_helper.cc
index 5870d2f1d5665caad550a121740f8004aacf04a6..73fb25ff31cd999b574ef6f06a1084c2f6753141 100644
--- a/third_party/WebKit/Source/platform/scheduler/child/scheduler_helper.cc
+++ b/third_party/WebKit/Source/platform/scheduler/child/scheduler_helper.cc
@@ -17,13 +17,15 @@ SchedulerHelper::SchedulerHelper(
scoped_refptr<SchedulerTqmDelegate> task_queue_manager_delegate,
const char* tracing_category,
const char* disabled_by_default_tracing_category,
- const char* disabled_by_default_verbose_tracing_category)
+ const char* disabled_by_default_verbose_tracing_category,
+ bool set_crash_keys)
: task_queue_manager_delegate_(task_queue_manager_delegate),
task_queue_manager_(
new TaskQueueManager(task_queue_manager_delegate,
tracing_category,
disabled_by_default_tracing_category,
- disabled_by_default_verbose_tracing_category)),
+ disabled_by_default_verbose_tracing_category,
+ set_crash_keys)),
control_task_runner_(
NewTaskQueue(TaskQueue::Spec(TaskQueue::QueueType::CONTROL)
.SetShouldNotifyObservers(false))),

Powered by Google App Engine
This is Rietveld 408576698