Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Unified Diff: tools/perf/benchmarks/scheduler.py

Issue 300413002: Add simple pepper plugin telemetry test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix formating Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/DEPS ('k') | tools/perf/page_sets/tough_pepper_cases.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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'
+
+ def CustomizeBrowserOptions(self, options):
+ # This is needed for testing pepper plugin.
+ options.AppendExtraBrowserArgs('--enable-pepper-testing')
« no previous file with comments | « tools/DEPS ('k') | tools/perf/page_sets/tough_pepper_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698