Remove use of JSONReader::DeprecatedRead from activity_log
[chromium-blink-merge.git] / tools / chrome_proxy / integration_tests / chrome_proxy_pagesets / video_instrumented.py
blob8cd993b2b5a6d4a73beeea678693c0da4d225198
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 from telemetry.page import page as page_module
6 from telemetry import story
8 class VideoFrameStorySet(story.StorySet):
9 """Chrome proxy video tests: verify frames of transcoded videos"""
10 def __init__(self):
11 super(VideoFrameStorySet, self).__init__()
12 for url in [
13 'http://check.googlezip.net/cacheable/video/buck_bunny_640x360_24fps_video.html',
14 'http://check.googlezip.net/cacheable/video/buck_bunny_60fps_video.html',
16 self.AddStory(page_module.Page(url, self))
18 class VideoAudioStorySet(story.StorySet):
19 """Chrome proxy video tests: verify audio of transcoded videos"""
20 def __init__(self):
21 super(VideoAudioStorySet, self).__init__()
22 for url in [
23 'http://check.googlezip.net/cacheable/video/buck_bunny_640x360_24fps_audio.html',
25 self.AddStory(page_module.Page(url, self))