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

Side by Side Diff: tracing/tracing/ui/analysis/multi_object_sub_view.html

Issue 2246173002: Move AnalysisSubView to tr.ui.analysis namespace (Closed) Base URL: https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git@master
Patch Set: Created 4 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 (c) 2013 The Chromium Authors. All rights reserved. 3 Copyright (c) 2013 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/model/event_set.html"> 8 <link rel="import" href="/tracing/model/event_set.html">
9 <link rel="import" href="/tracing/ui/analysis/analysis_link.html"> 9 <link rel="import" href="/tracing/ui/analysis/analysis_link.html">
10 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html"> 10 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html">
(...skipping 10 matching lines...) Expand all
21 } 21 }
22 </style> 22 </style>
23 <tr-ui-b-table id="content"></tr-ui-b-table> 23 <tr-ui-b-table id="content"></tr-ui-b-table>
24 </template> 24 </template>
25 </dom-module> 25 </dom-module>
26 <script> 26 <script>
27 'use strict'; 27 'use strict';
28 28
29 Polymer({ 29 Polymer({
30 is: 'tr-ui-a-multi-object-sub-view', 30 is: 'tr-ui-a-multi-object-sub-view',
31 behaviors: [tr.ui.analysis.behaviors.AnalysisSubView], 31 behaviors: [tr.ui.analysis.AnalysisSubView],
32 32
33 created: function() { 33 created: function() {
34 this.currentSelection_ = undefined; 34 this.currentSelection_ = undefined;
35 }, 35 },
36 36
37 ready: function() { 37 ready: function() {
38 this.$.content.showHeader = false; 38 this.$.content.showHeader = false;
39 }, 39 },
40 40
41 get selection() { 41 get selection() {
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 return linkEl; 86 return linkEl;
87 }, 87 },
88 width: '100%' 88 width: '100%'
89 } 89 }
90 ]; 90 ];
91 table.tableRows = objectEvents; 91 table.tableRows = objectEvents;
92 table.rebuild(); 92 table.rebuild();
93 } 93 }
94 }); 94 });
95 </script> 95 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698