Commit 5cc20bac authored by vmiura's avatar vmiura Committed by Commit bot

telemetry: Fix thread name CompositorRasterWorker -> CompositorTileWorker.

Renaming this thread broke some of the thread_times metrics.

TBR=epenner@chromium.org
BUG=440188

Review URL: https://codereview.chromium.org/806923002

Cr-Commit-Position: refs/heads/master@{#308430}
parent 11e45a87
......@@ -79,13 +79,13 @@ TimelineThreadCategories = {
"CrRendererMain" : "renderer_main",
"Compositor" : "renderer_compositor",
"IOThread" : "IO",
"CompositorRasterWorker": "raster",
"CompositorTileWorker" : "raster",
"DummyThreadName1" : "other",
"DummyThreadName2" : "total_fast_path",
"DummyThreadName3" : "total_all"
}
_MatchBySubString = ["IOThread", "CompositorRasterWorker"]
_MatchBySubString = ["IOThread", "CompositorTileWorker"]
AllThreads = TimelineThreadCategories.values()
NoThreads = []
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment