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

Side by Side Diff: tools/perf/benchmarks/spaceport.py

Issue 319813004: [Telemetry] Update copyright header style. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove stray change Created 6 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 | Annotate | Revision Log
« no previous file with comments | « tools/perf/benchmarks/smoothness.py ('k') | tools/perf/benchmarks/sunspider.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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 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 4
5 """Runs spaceport.io's PerfMarks benchmark.""" 5 """Runs spaceport.io's PerfMarks benchmark."""
6 6
7 import logging 7 import logging
8 import os 8 import os
9 9
10 from telemetry import test 10 from telemetry import test
11 from telemetry.core import util 11 from telemetry.core import util
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 class Spaceport(test.Test): 60 class Spaceport(test.Test):
61 """spaceport.io's PerfMarks benchmark.""" 61 """spaceport.io's PerfMarks benchmark."""
62 test = _SpaceportMeasurement 62 test = _SpaceportMeasurement
63 63
64 def CreatePageSet(self, options): 64 def CreatePageSet(self, options):
65 spaceport_dir = os.path.join(util.GetChromiumSrcDir(), 'chrome', 'test', 65 spaceport_dir = os.path.join(util.GetChromiumSrcDir(), 'chrome', 'test',
66 'data', 'third_party', 'spaceport') 66 'data', 'third_party', 'spaceport')
67 ps = page_set.PageSet(file_path=spaceport_dir) 67 ps = page_set.PageSet(file_path=spaceport_dir)
68 ps.AddPageWithDefaultRunNavigate('file://index.html') 68 ps.AddPageWithDefaultRunNavigate('file://index.html')
69 return ps 69 return ps
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/smoothness.py ('k') | tools/perf/benchmarks/sunspider.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698