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

Unified Diff: tools/perf/page_sets/top_10.py

Issue 2474423002: perf: Remove Facebook from power.gpu_rasterization.top_10 (Closed)
Patch Set: Also fix power.top_10 Created 4 years, 1 month 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/perf/benchmarks/power.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/top_10.py
diff --git a/tools/perf/page_sets/top_10.py b/tools/perf/page_sets/top_10.py
index 7e4402a0136a72c9eea05cfda4066166c2b5ed1e..7c9045fad222db2377dca3c918728c8a9287818b 100644
--- a/tools/perf/page_sets/top_10.py
+++ b/tools/perf/page_sets/top_10.py
@@ -125,3 +125,27 @@ class Top10PageSet(story.StorySet):
# #20 Alexa
self.AddStory(SimplePage('http://www.ask.com/', self))
+
+
+# TODO(skyostil): Replace this with Top10PageSet once the power metric can deal
+# with pages that don't become quiescent. See crbug.com/662381.
+class Top10QuiescentPageSet(story.StorySet):
+ """10 pages that reach network quiesence chosen from Alexa top sites"""
+
+ def __init__(self):
+ super(Top10QuiescentPageSet, self).__init__(
+ archive_data_file='data/top_10.json',
+ cloud_storage_bucket=story.PARTNER_BUCKET)
+ self.AddStory(Google(self))
+ # TODO(dominikg): fix crbug.com/386152
+ #self.AddStory(Gmail(self))
+ self.AddStory(GoogleCalendar(self))
+ self.AddStory(Youtube(self))
+ # crbug.com/662381.
+ #self.AddStory(Facebook(self))
+ self.AddStory(SimplePage('http://en.wikipedia.org/wiki/Wikipedia',
+ self, name='Wikipedia'))
+ self.AddStory(SimplePage('http://www.amazon.com', self))
+ self.AddStory(SimplePage('http://www.yahoo.com/', self))
+ self.AddStory(SimplePage('http://www.bing.com/', self))
+ self.AddStory(SimplePage('http://www.ask.com/', self))
« no previous file with comments | « tools/perf/benchmarks/power.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698