Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 from telemetry.page import page as page_module | |
| 5 from telemetry import story | |
| 6 | |
| 7 | |
| 8 class SteadyStateStorySet(story.StorySet): | |
|
nednguyen
2016/08/24 19:51:43
Why create new story set & benchmark instead of ad
erikchen
2016/08/24 22:13:31
Assuming this has low noise, I'm going to add anot
| |
| 9 """Historically, Chrome has high steady-state CPU usage on these sites.""" | |
| 10 | |
| 11 def __init__(self): | |
| 12 super(SteadyStateStorySet, self).__init__( | |
| 13 archive_data_file='data/steady_state.json', | |
| 14 cloud_storage_bucket=story.PARTNER_BUCKET) | |
| 15 self.AddStory(page_module.Page( | |
| 16 'http://www.labradortraininghq.com/labrador-training/how-to-crate-train' | |
| 17 '-a-puppy/#How_Long_DoesIt_Take_To_Crate_Train_A_Puppy', page_set=self)) | |
| OLD | NEW |