| Index: tools/perf/page_sets/maps.py
|
| diff --git a/tools/perf/page_sets/maps.py b/tools/perf/page_sets/maps.py
|
| index 9cd18978ee9e3e277acbd54097eac94072e74cee..5303c30f58d0dc8e636cf8b45bb67805ee7d36ab 100644
|
| --- a/tools/perf/page_sets/maps.py
|
| +++ b/tools/perf/page_sets/maps.py
|
| @@ -15,7 +15,8 @@ class MapsPage(page_module.Page):
|
| url='http://localhost:8000/performance.html',
|
| page_set=page_set,
|
| shared_page_state_class=(
|
| - webgl_supported_shared_state.WebGLSupportedSharedState))
|
| + webgl_supported_shared_state.WebGLSupportedSharedState),
|
| + name='http://localhost:8000/performance.html')
|
| self.archive_data_file = 'data/maps.json'
|
|
|
| @property
|
| @@ -40,6 +41,7 @@ class MapsPageSet(story.StorySet):
|
| def __init__(self):
|
| super(MapsPageSet, self).__init__(
|
| archive_data_file='data/maps.json',
|
| - cloud_storage_bucket=story.PUBLIC_BUCKET)
|
| + cloud_storage_bucket=story.PUBLIC_BUCKET,
|
| + verify_names=True)
|
|
|
| self.AddStory(MapsPage(self))
|
|
|