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

Side by Side Diff: tracing/tracing/ui/analysis/stacked_pane.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
« no previous file with comments | « tracing/tracing/ui/analysis/single_user_expectation_sub_view.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « tracing/tracing/ui/analysis/single_user_expectation_sub_view.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698