| Index: tools/perf/perf_tools/smoothness_benchmark.py
|
| diff --git a/tools/perf/perf_tools/smoothness_benchmark.py b/tools/perf/perf_tools/smoothness_benchmark.py
|
| index 055fdbbd27dabedb68eddabc22ecdde6f75b6d23..461b4a4732ea7985ee33324388b267e06e248989 100644
|
| --- a/tools/perf/perf_tools/smoothness_benchmark.py
|
| +++ b/tools/perf/perf_tools/smoothness_benchmark.py
|
| @@ -144,7 +144,7 @@ def CalcImageDecodingResults(rendering_stats_deltas, results):
|
|
|
| class SmoothnessBenchmark(multi_page_benchmark.MultiPageBenchmark):
|
| def __init__(self):
|
| - super(SmoothnessBenchmark, self).__init__('scrolling')
|
| + super(SmoothnessBenchmark, self).__init__('smoothness')
|
| self.force_enable_threaded_compositing = False
|
| self.use_gpu_benchmarking_extension = True
|
|
|
| @@ -160,7 +160,7 @@ class SmoothnessBenchmark(multi_page_benchmark.MultiPageBenchmark):
|
| options.extra_browser_args.append('--enable-threaded-compositing')
|
|
|
| def CanRunForPage(self, page):
|
| - return hasattr(page, 'scrolling')
|
| + return hasattr(page, 'smoothness')
|
|
|
| def MeasurePage(self, page, tab, results):
|
| rendering_stats_deltas = tab.runtime.Evaluate(
|
|
|