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

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

Issue 1997523002: Remove some page_cycler benchmarks that have been disabled for a long time (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/perf/benchmarks/page_cycler.py ('k') | tools/perf/page_sets/data/big_js.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/big_js.py
diff --git a/tools/perf/page_sets/big_js.py b/tools/perf/page_sets/big_js.py
deleted file mode 100644
index f473a1d62589a514b5a685cc11c14b4263cbc339..0000000000000000000000000000000000000000
--- a/tools/perf/page_sets/big_js.py
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-from telemetry.page import page as page_module
-from telemetry.page import shared_page_state
-from telemetry import story
-
-class BigJsPageSet(story.StorySet):
-
- """ Sites which load and run big JavaScript files."""
-
- def __init__(self):
- super(BigJsPageSet, self).__init__(
- archive_data_file='data/big_js.json',
- cloud_storage_bucket=story.PARTNER_BUCKET)
-
- # www.foo.com is a dummy page to make it easier to run only one interesting
- # page at a time. You can't just run the interesting page on its own: Page
- # sets with only one page don't work well, since we end up reusing a
- # renderer all the time and it keeps its memory caches alive (see
- # crbug.com/403735).
- urls_list = [
- 'http://beta.unity3d.com/jonas/DT2/',
- 'https://www.youtube.com/watch?v=IJNR2EpS0jw',
- 'http://www.foo.com',
- ]
- for url in urls_list:
- self.AddStory(page_module.Page(
- url, self,
- shared_page_state_class=shared_page_state.SharedDesktopPageState))
« no previous file with comments | « tools/perf/benchmarks/page_cycler.py ('k') | tools/perf/page_sets/data/big_js.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698