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

Side by Side Diff: tools/playback_benchmark/playback.js

Issue 9187051: Fix some license headers in tools/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 8 years, 11 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/playback_benchmark/common.js ('k') | tools/stats_viewer/OpenDialog.cs » ('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 2010 Google Inc. All Rights Reserved. 1 // Copyright (c) 2012 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.
2 4
3 /** 5 /**
4 * @fileoverview Playback agent. 6 * @fileoverview Playback agent.
5 */ 7 */
6 8
7 var Benchmark = Benchmark || {}; 9 var Benchmark = Benchmark || {};
8 10
9 /** 11 /**
10 * Playback agent class. 12 * Playback agent class.
11 * @param {Object} data Test data. 13 * @param {Object} data Test data.
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 Benchmark.reportScore = function(score) { 249 Benchmark.reportScore = function(score) {
248 Benchmark.score = score; 250 Benchmark.score = score;
249 }; 251 };
250 252
251 Benchmark.originals.addEventListenerToWindow.call( 253 Benchmark.originals.addEventListenerToWindow.call(
252 window, 'message', function(event) { 254 window, 'message', function(event) {
253 if (Benchmark.score) { 255 if (Benchmark.score) {
254 event.source.postMessage(Benchmark.score, event.origin); 256 event.source.postMessage(Benchmark.score, event.origin);
255 } 257 }
256 }, false); 258 }, false);
OLDNEW
« no previous file with comments | « tools/playback_benchmark/common.js ('k') | tools/stats_viewer/OpenDialog.cs » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698