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

Side by Side Diff: tools/perf/page_sets/tough_video_cases.py

Issue 2941663002: Removing verify_names=True now that the default for verify_names is True (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
OLDNEW
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 from telemetry.page import page as page_module 4 from telemetry.page import page as page_module
5 from telemetry import story 5 from telemetry import story
6 6
7 _PAGE_TAGS_LIST = [ 7 _PAGE_TAGS_LIST = [
8 # Audio codecs: 8 # Audio codecs:
9 'pcm', 9 'pcm',
10 'mp3', 10 'mp3',
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 action_timeout_in_seconds=120) 388 action_timeout_in_seconds=120)
389 389
390 390
391 class ToughVideoCasesPageSet(story.StorySet): 391 class ToughVideoCasesPageSet(story.StorySet):
392 """ 392 """
393 Description: Video Stack Perf pages that report time_to_play, seek time and 393 Description: Video Stack Perf pages that report time_to_play, seek time and
394 many other media-specific and generic metrics. 394 many other media-specific and generic metrics.
395 """ 395 """
396 def __init__(self, measure_memory=False): 396 def __init__(self, measure_memory=False):
397 super(ToughVideoCasesPageSet, self).__init__( 397 super(ToughVideoCasesPageSet, self).__init__(
398 cloud_storage_bucket=story.PARTNER_BUCKET, 398 cloud_storage_bucket=story.PARTNER_BUCKET)
399 verify_names=True)
400 399
401 self.measure_memory = measure_memory 400 self.measure_memory = measure_memory
402 401
403 # Normal play tests: 402 # Normal play tests:
404 self.AddStory(Page2(self)) 403 self.AddStory(Page2(self))
405 self.AddStory(Page4(self)) 404 self.AddStory(Page4(self))
406 self.AddStory(Page7(self)) 405 self.AddStory(Page7(self))
407 self.AddStory(Page8(self)) 406 self.AddStory(Page8(self))
408 self.AddStory(Page11(self)) 407 self.AddStory(Page11(self))
409 self.AddStory(Page12(self)) 408 self.AddStory(Page12(self))
410 self.AddStory(Page13(self)) 409 self.AddStory(Page13(self))
411 self.AddStory(Page14(self)) 410 self.AddStory(Page14(self))
412 self.AddStory(Page15(self)) 411 self.AddStory(Page15(self))
413 self.AddStory(Page16(self)) 412 self.AddStory(Page16(self))
414 self.AddStory(Page17(self)) 413 self.AddStory(Page17(self))
415 self.AddStory(Page30(self)) 414 self.AddStory(Page30(self))
416 self.AddStory(Page32(self)) 415 self.AddStory(Page32(self))
417 self.AddStory(Page34(self)) 416 self.AddStory(Page34(self))
418 417
419 # Seek tests: 418 # Seek tests:
420 self.AddStory(Page19(self)) 419 self.AddStory(Page19(self))
421 self.AddStory(Page20(self)) 420 self.AddStory(Page20(self))
422 self.AddStory(Page23(self)) 421 self.AddStory(Page23(self))
423 self.AddStory(Page24(self)) 422 self.AddStory(Page24(self))
424 self.AddStory(Page25(self)) 423 self.AddStory(Page25(self))
425 self.AddStory(Page26(self)) 424 self.AddStory(Page26(self))
426 self.AddStory(Page31(self)) 425 self.AddStory(Page31(self))
427 self.AddStory(Page33(self)) 426 self.AddStory(Page33(self))
428 self.AddStory(Page36(self)) 427 self.AddStory(Page36(self))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/tough_texture_upload_cases.py ('k') | tools/perf/page_sets/tough_webgl_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698