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

Side by Side Diff: tools/perf/benchmarks/jsgamebench.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/image_decoding.py ('k') | tools/perf/benchmarks/kraken.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 Facebook's JSGameBench benchmark. 5 """Runs Facebook's JSGameBench benchmark.
6 6
7 As of May 14, 2014, JSGameBench is no longer maintained. See README.md: 7 As of May 14, 2014, JSGameBench is no longer maintained. See README.md:
8 https://github.com/facebookarchive/jsgamebench 8 https://github.com/facebookarchive/jsgamebench
9 9
10 The benchmark is kept here for historical purposes but is disabled on the bots. 10 The benchmark is kept here for historical purposes but is disabled on the bots.
11 """ 11 """
(...skipping 23 matching lines...) Expand all
35 class Jsgamebench(test.Test): 35 class Jsgamebench(test.Test):
36 """Counts how many animating sprites can move around on the screen at once.""" 36 """Counts how many animating sprites can move around on the screen at once."""
37 test = _JsgamebenchMeasurement 37 test = _JsgamebenchMeasurement
38 38
39 def CreatePageSet(self, options): 39 def CreatePageSet(self, options):
40 ps = page_set.PageSet( 40 ps = page_set.PageSet(
41 archive_data_file='../page_sets/data/jsgamebench.json', 41 archive_data_file='../page_sets/data/jsgamebench.json',
42 file_path=os.path.dirname(__file__)) 42 file_path=os.path.dirname(__file__))
43 ps.AddPageWithDefaultRunNavigate('http://localhost/') 43 ps.AddPageWithDefaultRunNavigate('http://localhost/')
44 return ps 44 return ps
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/image_decoding.py ('k') | tools/perf/benchmarks/kraken.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698