| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 from page_sets.login_helpers import chrome_login | 8 from page_sets.login_helpers import chrome_login |
| 9 | 9 |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 # full path relative to the page. | 26 # full path relative to the page. |
| 27 chrome_login.LoginChromeAccount(action_runner, 'chrome', | 27 chrome_login.LoginChromeAccount(action_runner, 'chrome', |
| 28 credentials_path=self.credentials_path) | 28 credentials_path=self.credentials_path) |
| 29 | 29 |
| 30 | 30 |
| 31 class ChromeSigninPageSet(story.StorySet): | 31 class ChromeSigninPageSet(story.StorySet): |
| 32 | 32 |
| 33 def __init__(self): | 33 def __init__(self): |
| 34 super(ChromeSigninPageSet, self).__init__( | 34 super(ChromeSigninPageSet, self).__init__( |
| 35 archive_data_file='data/chrome_signin_archive.json', | 35 archive_data_file='data/chrome_signin_archive.json', |
| 36 cloud_storage_bucket=story.INTERNAL_BUCKET, | 36 cloud_storage_bucket=story.INTERNAL_BUCKET) |
| 37 verify_names=True) | |
| 38 self.AddStory(ChromeSigninPage(self)) | 37 self.AddStory(ChromeSigninPage(self)) |
| OLD | NEW |