| OLD | NEW |
| 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 Loading... |
| 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)) |
| OLD | NEW |