Index: tools/perf/benchmarks/image_decoding.py |
diff --git a/tools/perf/benchmarks/image_decoding.py b/tools/perf/benchmarks/image_decoding.py |
index 7c897723d5281a0d9cd4429c381c413ad1afb0c2..68ed502664d72baca540836502d15ffbef424a9d 100644 |
--- a/tools/perf/benchmarks/image_decoding.py |
+++ b/tools/perf/benchmarks/image_decoding.py |
@@ -26,3 +26,11 @@ class ImageDecodingToughImageCases(perf_benchmark.PerfBenchmark): |
def GetExpectations(self): |
return page_sets.ImageDecodingMeasurementStoryExpectations() |
+ |
+ def CustomizeBrowserOptions(self, options): |
+ options.AppendExtraBrowserArgs([ |
+ # Disable asynchronous decodes in the renderer since these test |
+ # rely on images have been decoded between consecutive |
+ # requestAnimationFrames. |
+ '--disable-checker-imaging' |
nednguyen
2017/06/28 19:28:11
Chris: I hope the overhauled version of image deco
Khushal
2017/06/28 20:29:55
If the only thing this benchmark wants to measure
cblume
2017/06/28 21:15:28
I think our concern is if the existing perf was th
|
+ ]) |