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

Side by Side Diff: tools/perf/page_sets/maps.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 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 24 matching lines...) Expand all
35 'window.testMetrics != undefined', timeout=120) 35 'window.testMetrics != undefined', timeout=120)
36 36
37 37
38 class MapsPageSet(story.StorySet): 38 class MapsPageSet(story.StorySet):
39 39
40 """ Google Maps examples """ 40 """ Google Maps examples """
41 41
42 def __init__(self): 42 def __init__(self):
43 super(MapsPageSet, self).__init__( 43 super(MapsPageSet, self).__init__(
44 archive_data_file='data/maps.json', 44 archive_data_file='data/maps.json',
45 cloud_storage_bucket=story.PUBLIC_BUCKET, 45 cloud_storage_bucket=story.PUBLIC_BUCKET)
46 verify_names=True)
47 46
48 self.AddStory(MapsPage(self)) 47 self.AddStory(MapsPage(self))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/long_running_idle_google_cases.py ('k') | tools/perf/page_sets/media_cns_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698