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

Side by Side Diff: tools/perf/page_sets/tough_pinch_zoom_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
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.page import shared_page_state 5 from telemetry.page import shared_page_state
6 from telemetry import story 6 from telemetry import story
7 7
8 8
9 class ToughPinchZoomCasesPage(page_module.Page): 9 class ToughPinchZoomCasesPage(page_module.Page):
10 10
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 url='http://espn.go.com/nba', 184 url='http://espn.go.com/nba',
185 page_set=page_set, name='ESPN') 185 page_set=page_set, name='ESPN')
186 186
187 187
188 class WeatherDotComPage(ToughPinchZoomCasesPage): 188 class WeatherDotComPage(ToughPinchZoomCasesPage):
189 189
190 """ Why: #7 (Alexa news); #27 total time spent,Picked interesting page """ 190 """ Why: #7 (Alexa news); #27 total time spent,Picked interesting page """
191 191
192 def __init__(self, page_set): 192 def __init__(self, page_set):
193 super(WeatherDotComPage, self).__init__( 193 super(WeatherDotComPage, self).__init__(
194 # pylint: disable=C0301 194 # pylint: disable=line-too-long
195 url='http://www.weather.com/weather/right-now/Mountain+View+CA+94043', 195 url='http://www.weather.com/weather/right-now/Mountain+View+CA+94043',
196 page_set=page_set, name='Weather.com') 196 page_set=page_set, name='Weather.com')
197 197
198 198
199 class YahooGamePage(ToughPinchZoomCasesPage): 199 class YahooGamePage(ToughPinchZoomCasesPage):
200 200
201 """ Why: #1 games according to Alexa (with actual games in it) """ 201 """ Why: #1 games according to Alexa (with actual games in it) """
202 202
203 def __init__(self, page_set): 203 def __init__(self, page_set):
204 super(YahooGamePage, self).__init__( 204 super(YahooGamePage, self).__init__(
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 def __init__(self): 270 def __init__(self):
271 super(AndroidToughPinchZoomCasesPageSet, self).__init__(7.0) 271 super(AndroidToughPinchZoomCasesPageSet, self).__init__(7.0)
272 272
273 273
274 class DesktopToughPinchZoomCasesPageSet(ToughPinchZoomCasesPageSet): 274 class DesktopToughPinchZoomCasesPageSet(ToughPinchZoomCasesPageSet):
275 275
276 """ ToughPinchZoomCasesPageSet using the maximum desktop zoom level """ 276 """ ToughPinchZoomCasesPageSet using the maximum desktop zoom level """
277 277
278 def __init__(self): 278 def __init__(self):
279 super(DesktopToughPinchZoomCasesPageSet, self).__init__(4.0) 279 super(DesktopToughPinchZoomCasesPageSet, self).__init__(4.0)
OLDNEW
« no previous file with comments | « tools/perf/page_sets/tough_canvas_cases.py ('k') | tools/perf/page_sets/tough_scheduling_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698