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

Side by Side Diff: tools/perf/page_sets/tough_webgl_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
« no previous file with comments | « tools/perf/page_sets/tough_video_cases.py ('k') | tools/perf/page_sets/trivial_sites.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 4
5 from telemetry.page import page as page_module 5 from telemetry.page import page as page_module
6 from telemetry import story 6 from telemetry import story
7 7
8 from page_sets import webgl_supported_shared_state 8 from page_sets import webgl_supported_shared_state
9 9
10 10
(...skipping 28 matching lines...) Expand all
39 39
40 class ToughWebglCasesPageSet(story.StorySet): 40 class ToughWebglCasesPageSet(story.StorySet):
41 41
42 """ 42 """
43 Description: Self-driven WebGL animation examples 43 Description: Self-driven WebGL animation examples
44 """ 44 """
45 45
46 def __init__(self): 46 def __init__(self):
47 super(ToughWebglCasesPageSet, self).__init__( 47 super(ToughWebglCasesPageSet, self).__init__(
48 archive_data_file='data/tough_webgl_cases.json', 48 archive_data_file='data/tough_webgl_cases.json',
49 cloud_storage_bucket=story.PUBLIC_BUCKET, 49 cloud_storage_bucket=story.PUBLIC_BUCKET)
50 verify_names=True)
51 50
52 urls_list = [ 51 urls_list = [
53 # pylint: disable=line-too-long 52 # pylint: disable=line-too-long
54 'http://www.khronos.org/registry/webgl/sdk/demos/google/nvidia-vertex-buff er-object/index.html', 53 'http://www.khronos.org/registry/webgl/sdk/demos/google/nvidia-vertex-buff er-object/index.html',
55 # pylint: disable=line-too-long 54 # pylint: disable=line-too-long
56 'http://www.khronos.org/registry/webgl/sdk/demos/google/san-angeles/index. html', 55 'http://www.khronos.org/registry/webgl/sdk/demos/google/san-angeles/index. html',
57 # pylint: disable=line-too-long 56 # pylint: disable=line-too-long
58 'http://www.khronos.org/registry/webgl/sdk/demos/google/particles/index.ht ml', 57 'http://www.khronos.org/registry/webgl/sdk/demos/google/particles/index.ht ml',
59 'http://www.khronos.org/registry/webgl/sdk/demos/webkit/Earth.html', 58 'http://www.khronos.org/registry/webgl/sdk/demos/webkit/Earth.html',
60 # pylint: disable=line-too-long 59 # pylint: disable=line-too-long
61 'http://www.khronos.org/registry/webgl/sdk/demos/webkit/ManyPlanetsDeep.ht ml', 60 'http://www.khronos.org/registry/webgl/sdk/demos/webkit/ManyPlanetsDeep.ht ml',
62 'http://webglsamples.org/aquarium/aquarium.html', 61 'http://webglsamples.org/aquarium/aquarium.html',
63 'http://webglsamples.org/blob/blob.html', 62 'http://webglsamples.org/blob/blob.html',
64 # pylint: disable=line-too-long 63 # pylint: disable=line-too-long
65 'http://webglsamples.org/dynamic-cubemap/dynamic-cubemap.html', 64 'http://webglsamples.org/dynamic-cubemap/dynamic-cubemap.html',
66 # pylint: disable=line-too-long 65 # pylint: disable=line-too-long
67 'http://kenrussell.github.io/webgl-animometer/Animometer/tests/3d/webgl.ht ml', 66 'http://kenrussell.github.io/webgl-animometer/Animometer/tests/3d/webgl.ht ml',
68 ] 67 ]
69 for url in urls_list: 68 for url in urls_list:
70 self.AddStory(ToughWebglCasesPage(url, self)) 69 self.AddStory(ToughWebglCasesPage(url, self))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/tough_video_cases.py ('k') | tools/perf/page_sets/trivial_sites.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698