-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
core(trace-processor): use new toplevel task event name #5841
Conversation
bfecc6e
to
08ef553
Compare
@@ -9,7 +9,8 @@ | |||
// first frame of the response. | |||
const BASE_RESPONSE_LATENCY = 16; | |||
const SCHEDULABLE_TASK_TITLE = 'TaskQueueManager::ProcessTaskFromWorkQueue'; | |||
const SCHEDULABLE_TASK_TITLE_ALT = 'ThreadControllerImpl::DoWork'; | |||
const SCHEDULABLE_TASK_TITLE_ALT1 = 'ThreadControllerImpl::DoWork'; | |||
const SCHEDULABLE_TASK_TITLE_ALT2 = 'ThreadControllerImpl::RunTask'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you add a comment pointing to https://bugs.chromium.org/p/chromium/issues/detail?id=871204#c11 and indicating its in m69 and m70
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
@@ -9,7 +9,8 @@ | |||
// first frame of the response. | |||
const BASE_RESPONSE_LATENCY = 16; | |||
const SCHEDULABLE_TASK_TITLE = 'TaskQueueManager::ProcessTaskFromWorkQueue'; | |||
const SCHEDULABLE_TASK_TITLE_ALT = 'ThreadControllerImpl::DoWork'; | |||
const SCHEDULABLE_TASK_TITLE_ALT1 = 'ThreadControllerImpl::DoWork'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you add a comment pointing to https://crrev.com/c/883346
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
Summary
as @paulirish discovered, there's a new event name for toplevel tasks
ThreadControllerImpl::RunTask
this adds it so we can handle new Chrome traces.will probably need to be ported back to Chrome beta 😬
Related Issues/PRs
fixes #5832