-
Notifications
You must be signed in to change notification settings - Fork 46
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
Improve user timing coloring #12
Comments
Are there some ways to make changes to canvas which is drawing all timelines, so we will be able to colorize user timing? |
if (event.hasCategory(TimelineModel.TimelineModel.Category.Console) ||
event.hasCategory(TimelineModel.TimelineModel.Category.UserTiming))
return this._consoleColorGenerator.colorForID(event.name); basically if we can redefine the the only hard part here is finding the path to the TimelineFlameChartDataProvider instance. devtools hax. :) |
nice, thanks for pointing out on that stuff, now it will be much easier to make it happened) let's do some hacking :)) 💪 |
Linking to GoogleChrome/lighthouse#1910
The text was updated successfully, but these errors were encountered: