OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 Copyright 2015 The Chromium Authors. All rights reserved. | 3 Copyright 2015 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/base.html"> | 8 <link rel="import" href="/tracing/base/base.html"> |
9 | 9 |
10 <!-- | 10 <!-- |
11 @fileoverview Analysis view stacked pane. See the stacked pane view element | 11 @fileoverview Analysis view stacked pane. See the stacked pane view element |
12 (tr-ui-a-stacked-pane-view) documentation for more details. | 12 (tr-ui-a-stacked-pane-view) documentation for more details. |
13 --> | 13 --> |
14 <script> | 14 <script> |
15 'use strict'; | 15 'use strict'; |
16 | 16 |
17 tr.exportTo('tr.ui.analysis.behaviors', function() { | 17 tr.exportTo('tr.ui.analysis', function() { |
18 | 18 |
19 var StackedPane = { | 19 var StackedPane = { |
20 rebuild: function() { | 20 rebuild: function() { |
21 /** | 21 /** |
22 * Rebuild the pane if necessary. | 22 * Rebuild the pane if necessary. |
23 * | 23 * |
24 * This method is not intended to be overriden by subclasses. Please | 24 * This method is not intended to be overriden by subclasses. Please |
25 * override scheduleRebuildPane_() instead. | 25 * override scheduleRebuildPane_() instead. |
26 */ | 26 */ |
27 if (!this.paneDirty_) { | 27 if (!this.paneDirty_) { |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 } | 87 } |
88 }; | 88 }; |
89 | 89 |
90 return { | 90 return { |
91 StackedPane: StackedPane | 91 StackedPane: StackedPane |
92 }; | 92 }; |
93 }); | 93 }); |
94 | 94 |
95 Polymer({ | 95 Polymer({ |
96 is: 'tr-ui-a-stacked-pane', | 96 is: 'tr-ui-a-stacked-pane', |
97 behaviors: [tr.ui.analysis.behaviors.StackedPane] | 97 behaviors: [tr.ui.analysis.StackedPane] |
98 }); | 98 }); |
99 </script> | 99 </script> |
OLD | NEW |