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

Side by Side Diff: tools/perf/page_sets/chrome_signin.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
« no previous file with comments | « tools/perf/page_sets/blob_workshop.py ('k') | tools/perf/page_sets/desktop_memory.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/blob_workshop.py ('k') | tools/perf/page_sets/desktop_memory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698