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

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

Issue 2613153005: Disable loading.mobile on Nexus6 WebView (Closed)
Patch Set: Created 3 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/loading.py
diff --git a/tools/perf/benchmarks/loading.py b/tools/perf/benchmarks/loading.py
index ca094d8a89d563ba432481fe28facd741415ad94..167f4eb65f74209f9d0f23cc50eb1df13fa71e09 100644
--- a/tools/perf/benchmarks/loading.py
+++ b/tools/perf/benchmarks/loading.py
@@ -30,6 +30,12 @@ class LoadingMobile(perf_benchmark.PerfBenchmark):
if possible_browser.browser_type == 'reference':
return True
+ # crbug.com/676612
+ if ((possible_browser.platform.GetDeviceTypeName() == 'Nexus 6' or
+ possible_browser.platform.GetDeviceTypeName() == 'AOSP on Shamu') and
+ possible_browser.browser_type == 'android-webview'):
+ return True
+
return False
@classmethod
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698