| Index: tools/perf/benchmarks/smoothness.py
|
| diff --git a/tools/perf/benchmarks/smoothness.py b/tools/perf/benchmarks/smoothness.py
|
| index 21ea4eef80a9bf892c933397ebfdf4fb270bed47..c09d3459c2a156ae905703782734065cdaf9d0d6 100644
|
| --- a/tools/perf/benchmarks/smoothness.py
|
| +++ b/tools/perf/benchmarks/smoothness.py
|
| @@ -451,6 +451,13 @@ class SmoothnessPathologicalMobileSites(_Smoothness):
|
| def Name(cls):
|
| return 'smoothness.pathological_mobile_sites'
|
|
|
| + @classmethod
|
| + def ShouldDisable(cls, possible_browser):
|
| + # http://crbug.com/685342
|
| + if possible_browser.platform.GetDeviceTypeName() == 'Nexus 7':
|
| + return True
|
| + return False
|
| +
|
|
|
| class SmoothnessToughTextureUploadCases(_Smoothness):
|
| page_set = page_sets.ToughTextureUploadCasesPageSet
|
|
|