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

Side by Side Diff: tracing/tracing/value/diagnostics/related_histogram_map.html

Issue 2995843002: Merge iteration_helpers into utils.html. (Closed)
Patch Set: Created 3 years, 4 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright 2016 The Chromium Authors. All rights reserved. 3 Copyright 2016 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <link rel="import" href="/tracing/base/iteration_helpers.html"> 8 <link rel="import" href="/tracing/base/utils.html">
9 <link rel="import" href="/tracing/value/diagnostics/diagnostic.html"> 9 <link rel="import" href="/tracing/value/diagnostics/diagnostic.html">
10 <link rel="import" href="/tracing/value/diagnostics/histogram_ref.html"> 10 <link rel="import" href="/tracing/value/diagnostics/histogram_ref.html">
11 11
12 <script> 12 <script>
13 'use strict'; 13 'use strict';
14 14
15 tr.exportTo('tr.v.d', function() { 15 tr.exportTo('tr.v.d', function() {
16 class RelatedHistogramMap extends tr.v.d.Diagnostic { 16 class RelatedHistogramMap extends tr.v.d.Diagnostic {
17 constructor() { 17 constructor() {
18 super(); 18 super();
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 163
164 tr.v.d.Diagnostic.register(RelatedHistogramMap, { 164 tr.v.d.Diagnostic.register(RelatedHistogramMap, {
165 elementName: 'tr-v-ui-related-histogram-map-span' 165 elementName: 'tr-v-ui-related-histogram-map-span'
166 }); 166 });
167 167
168 return { 168 return {
169 RelatedHistogramMap, 169 RelatedHistogramMap,
170 }; 170 };
171 }); 171 });
172 </script> 172 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698