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

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

Issue 1458083003: [Telemetry + tools/perf] Modify the pylint disable message to use symbolic name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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_texture_upload_cases.py ('k') | tools/perf/page_sets/typical_25.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 30 matching lines...) Expand all
41 """ 41 """
42 Description: Self-driven WebGL animation examples 42 Description: Self-driven WebGL animation examples
43 """ 43 """
44 44
45 def __init__(self): 45 def __init__(self):
46 super(ToughWebglCasesPageSet, self).__init__( 46 super(ToughWebglCasesPageSet, self).__init__(
47 archive_data_file='data/tough_webgl_cases.json', 47 archive_data_file='data/tough_webgl_cases.json',
48 cloud_storage_bucket=story.PUBLIC_BUCKET) 48 cloud_storage_bucket=story.PUBLIC_BUCKET)
49 49
50 urls_list = [ 50 urls_list = [
51 # pylint: disable=C0301 51 # pylint: disable=line-too-long
52 'http://www.khronos.org/registry/webgl/sdk/demos/google/nvidia-vertex-buff er-object/index.html', 52 'http://www.khronos.org/registry/webgl/sdk/demos/google/nvidia-vertex-buff er-object/index.html',
53 # pylint: disable=C0301 53 # pylint: disable=line-too-long
54 'http://www.khronos.org/registry/webgl/sdk/demos/google/san-angeles/index. html', 54 'http://www.khronos.org/registry/webgl/sdk/demos/google/san-angeles/index. html',
55 # pylint: disable=C0301 55 # pylint: disable=line-too-long
56 'http://www.khronos.org/registry/webgl/sdk/demos/google/particles/index.ht ml', 56 'http://www.khronos.org/registry/webgl/sdk/demos/google/particles/index.ht ml',
57 'http://www.khronos.org/registry/webgl/sdk/demos/webkit/Earth.html', 57 'http://www.khronos.org/registry/webgl/sdk/demos/webkit/Earth.html',
58 # pylint: disable=C0301 58 # pylint: disable=line-too-long
59 'http://www.khronos.org/registry/webgl/sdk/demos/webkit/ManyPlanetsDeep.ht ml', 59 'http://www.khronos.org/registry/webgl/sdk/demos/webkit/ManyPlanetsDeep.ht ml',
60 'http://webglsamples.googlecode.com/hg/aquarium/aquarium.html', 60 'http://webglsamples.googlecode.com/hg/aquarium/aquarium.html',
61 'http://webglsamples.googlecode.com/hg/blob/blob.html', 61 'http://webglsamples.googlecode.com/hg/blob/blob.html',
62 # pylint: disable=C0301 62 # pylint: disable=line-too-long
63 'http://webglsamples.googlecode.com/hg/dynamic-cubemap/dynamic-cubemap.htm l' 63 'http://webglsamples.googlecode.com/hg/dynamic-cubemap/dynamic-cubemap.htm l'
64 ] 64 ]
65 for url in urls_list: 65 for url in urls_list:
66 self.AddStory(ToughWebglCasesPage(url, self)) 66 self.AddStory(ToughWebglCasesPage(url, self))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/tough_texture_upload_cases.py ('k') | tools/perf/page_sets/typical_25.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698