Chromium Code Reviews| Index: tools/perf/benchmarks/scheduler.py |
| diff --git a/tools/perf/benchmarks/scheduler.py b/tools/perf/benchmarks/scheduler.py |
| index a6fb1a64f1449663e487e60eda7360399eb69558..dddafd78571eccf7e49f83062aa69d83b93ed621 100644 |
| --- a/tools/perf/benchmarks/scheduler.py |
| +++ b/tools/perf/benchmarks/scheduler.py |
| @@ -16,3 +16,13 @@ class SchedulerToughSchedulingCases(test.Test): |
| test = smoothness.Smoothness |
| page_set = 'page_sets/tough_scheduling_cases.py' |
| +@test.Disabled('android') # pepper plugin is not supported on android |
| +class SchedulerToughPepperCases(test.Test): |
| + """Measures rendering statistics while interacting with pages that have |
| + pepper plugins""" |
| + test = smoothness.Smoothness |
| + page_set = 'page_sets/tough_pepper_cases.py' |
|
nednguyen
2014/06/06 01:56:37
This should be tough_pepper_cases.ToughPepperCases
|
| + |
| + def CustomizeBrowserOptions(self, options): |
| + # This is needed for testing pepper plugin. |
| + options.AppendExtraBrowserArgs('--enable-pepper-testing') |
|
nednguyen
2014/06/06 01:56:37
This will be enough for the bot since it will pick
Yufeng Shen (Slow to review)
2014/06/06 16:15:19
@Tony: this new page_set meant for measuring the m
|