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

Side by Side Diff: tools/perf/page_sets/trivial_sites.py

Issue 2034123002: telemetry, mac: Add more simple scrolling power tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Copy paste error. Created 4 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/mac_gpu_sites.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 TrivialScrollingPage(page_module.Page):
9
10 def __init__(self, page_set):
11 super(TrivialScrollingPage, self).__init__(
12 url='file://trivial_sites/trivial_scrolling_page.html',
13 page_set=page_set)
14
15
16 class TrivialScrollStorySet(story.StorySet):
17
18 def __init__(self):
19 super(TrivialScrollStorySet, self).__init__()
20 self.AddStory(TrivialScrollingPage(self))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/mac_gpu_sites.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698