| Index: tools/perf/measurements/smoothness.py
|
| diff --git a/tools/perf/measurements/smoothness.py b/tools/perf/measurements/smoothness.py
|
| index f44feefc08ee82a70400ffbf1a721ac14d81bfe6..079902f07f0bf48bea53eba4b5c9f4b2bfd37213 100644
|
| --- a/tools/perf/measurements/smoothness.py
|
| +++ b/tools/perf/measurements/smoothness.py
|
| @@ -44,7 +44,9 @@ class Smoothness(page_measurement.PageMeasurement):
|
| return hasattr(page, 'smoothness')
|
|
|
| def WillRunAction(self, page, tab, action):
|
| - tab.browser.StartTracing('webkit.console,benchmark', 60)
|
| + # TODO(ermst): Remove "webkit" category after Blink r157377 is picked up by
|
| + # the reference builds.
|
| + tab.browser.StartTracing('webkit,webkit.console,benchmark', 60)
|
| if tab.browser.platform.IsRawDisplayFrameRateSupported():
|
| tab.browser.platform.StartRawDisplayFrameRateMeasurement()
|
| self._metrics = smoothness.SmoothnessMetrics(tab)
|
|
|