OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 from telemetry import story | 5 from telemetry import story |
6 from telemetry.page import page as page_module | 6 from telemetry.page import page as page_module |
7 | 7 |
8 | 8 |
9 class WebrtcPage(page_module.Page): | 9 class WebrtcPage(page_module.Page): |
10 | 10 |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 'crbug.com/468732') | 145 'crbug.com/468732') |
146 self.DisableStory('audio_call_g772_10s', | 146 self.DisableStory('audio_call_g772_10s', |
147 [story.expectations.ALL], | 147 [story.expectations.ALL], |
148 'crbug.com/468732') | 148 'crbug.com/468732') |
149 self.DisableStory('audio_call_pcmu_10s', | 149 self.DisableStory('audio_call_pcmu_10s', |
150 [story.expectations.ALL], | 150 [story.expectations.ALL], |
151 'crbug.com/468732') | 151 'crbug.com/468732') |
152 self.DisableStory('audio_call_isac/1600_10s', | 152 self.DisableStory('audio_call_isac/1600_10s', |
153 [story.expectations.ALL], | 153 [story.expectations.ALL], |
154 'crbug.com/468732') | 154 'crbug.com/468732') |
155 | |
156 self.DisableStory('30s_datachannel_transfer', | |
157 [story.expectations.ALL_DESKTOP], | |
158 'crbug.com/726811') | |
OLD | NEW |