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

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

Issue 1198823004: Update perf page_set to use story_set (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/perf/page_sets/typical_25.py ('k') | tools/perf/replace.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/webrtc_cases.py
diff --git a/tools/perf/page_sets/webrtc_cases.py b/tools/perf/page_sets/webrtc_cases.py
index 41010b84384567f6c44c4ebef3c63a1575a73ab5..63d1edb1372f86dec2548037a3d773ab917c514d 100644
--- a/tools/perf/page_sets/webrtc_cases.py
+++ b/tools/perf/page_sets/webrtc_cases.py
@@ -3,9 +3,8 @@
# found in the LICENSE file.
import os
+from telemetry import story
from telemetry.page import page as page_module
-from telemetry.page import page_set as page_set_module
-
WEBRTC_GITHUB_SAMPLES_URL = 'http://webrtc.github.io/samples/src/content/'
@@ -170,14 +169,14 @@ class Page9(WebrtcCasesPage):
action_runner.Wait(30)
-class WebrtcCasesPageSet(page_set_module.PageSet):
+class WebrtcCasesPageSet(story.StorySet):
""" WebRTC tests for Real-time audio and video communication. """
def __init__(self):
super(WebrtcCasesPageSet, self).__init__(
archive_data_file='data/webrtc_cases.json',
- bucket=page_set_module.PUBLIC_BUCKET)
+ cloud_storage_bucket=story.PUBLIC_BUCKET)
self.AddUserStory(Page1(self))
self.AddUserStory(Page2(self))
« no previous file with comments | « tools/perf/page_sets/typical_25.py ('k') | tools/perf/replace.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698