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

Side by Side Diff: appengine/trooper_o_matic/lib/cqstats-util.html

Issue 774323002: Moved trooper_o_matic to appengine/ (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 6 years 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 | « appengine/trooper_o_matic/karma.conf.js ('k') | appengine/trooper_o_matic/lib/dygraph.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright (c) 2014 The Chromium Authors. All rights reserved. 2 Copyright (c) 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 6
7 <link rel="import" href="../lib/sugar.html"> 7 <link rel="import" href="../lib/sugar.html">
8 8
9 <script> 9 <script>
10 var cqStatsUtil = cqStatsUtil || {}; 10 var cqStatsUtil = cqStatsUtil || {};
(...skipping 18 matching lines...) Expand all
29 return net.json({url: url, cache: true}); 29 return net.json({url: url, cache: true});
30 }; 30 };
31 31
32 cqStatsUtil.namedStat = function(name, cqStats) { 32 cqStatsUtil.namedStat = function(name, cqStats) {
33 return cqStats.stats.find(function(stat) { 33 return cqStats.stats.find(function(stat) {
34 return stat.name === name; 34 return stat.name === name;
35 }); 35 });
36 }; 36 };
37 })(); 37 })();
38 </script> 38 </script>
OLDNEW
« no previous file with comments | « appengine/trooper_o_matic/karma.conf.js ('k') | appengine/trooper_o_matic/lib/dygraph.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698