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

Side by Side Diff: chrome/test/media_router/telemetry/benchmarks/pagesets/media_router_perf_pages.py

Issue 2949063003: Set verify_names=False explicity because it's set to True by default now. (Closed)
Patch Set: Created 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 import utils 5 import utils
6 6
7 from telemetry import page 7 from telemetry import page
8 from telemetry import story 8 from telemetry import story
9 from benchmarks.pagesets import media_router_page 9 from benchmarks.pagesets import media_router_page
10 from telemetry.core import exceptions 10 from telemetry.core import exceptions
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 action_runner.ExecuteJavaScript('collectPerfData();') 173 action_runner.ExecuteJavaScript('collectPerfData();')
174 action_runner.Wait(SESSION_TIME) 174 action_runner.Wait(SESSION_TIME)
175 self.CloseExistingRoute(action_runner, sink_name) 175 self.CloseExistingRoute(action_runner, sink_name)
176 176
177 177
178 class MediaRouterDialogPageSet(story.StorySet): 178 class MediaRouterDialogPageSet(story.StorySet):
179 """Pageset for media router dialog latency tests.""" 179 """Pageset for media router dialog latency tests."""
180 180
181 def __init__(self): 181 def __init__(self):
182 super(MediaRouterDialogPageSet, self).__init__( 182 super(MediaRouterDialogPageSet, self).__init__(
183 cloud_storage_bucket=story.PARTNER_BUCKET) 183 cloud_storage_bucket=story.PARTNER_BUCKET, verify_names=False)
184 self.AddStory(CastDialogPage(self)) 184 self.AddStory(CastDialogPage(self))
185 185
186 186
187 class MediaRouterCPUMemoryPageSet(story.StorySet): 187 class MediaRouterCPUMemoryPageSet(story.StorySet):
188 """Pageset for media router CPU/memory usage tests.""" 188 """Pageset for media router CPU/memory usage tests."""
189 189
190 def __init__(self): 190 def __init__(self):
191 super(MediaRouterCPUMemoryPageSet, self).__init__( 191 super(MediaRouterCPUMemoryPageSet, self).__init__(
192 cloud_storage_bucket=story.PARTNER_BUCKET) 192 cloud_storage_bucket=story.PARTNER_BUCKET, verify_names=False)
193 self.AddStory(CastIdlePage(self)) 193 self.AddStory(CastIdlePage(self))
194 self.AddStory(CastFlingingPage(self)) 194 self.AddStory(CastFlingingPage(self))
195 self.AddStory(CastMirroringPage(self)) 195 self.AddStory(CastMirroringPage(self))
196 196
197 197
198 class CPUMemoryPageSet(story.StorySet): 198 class CPUMemoryPageSet(story.StorySet):
199 """Pageset to get baseline CPU and memory usage.""" 199 """Pageset to get baseline CPU and memory usage."""
200 200
201 def __init__(self): 201 def __init__(self):
202 super(CPUMemoryPageSet, self).__init__( 202 super(CPUMemoryPageSet, self).__init__(
203 cloud_storage_bucket=story.PARTNER_BUCKET) 203 cloud_storage_bucket=story.PARTNER_BUCKET, verify_names=False)
204 self.AddStory(CastIdlePage(self)) 204 self.AddStory(CastIdlePage(self))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698