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

Side by Side Diff: tracing/tracing/ui/analysis/memory_dump_heap_details_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
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/color_scheme.html"> 8 <link rel="import" href="/tracing/base/color_scheme.html">
9 <link rel="import" href="/tracing/base/iteration_helpers.html"> 9 <link rel="import" href="/tracing/base/iteration_helpers.html">
10 <link rel="import" href="/tracing/base/multi_dimensional_view.html"> 10 <link rel="import" href="/tracing/base/multi_dimensional_view.html">
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 columnConstructor: tr.ui.analysis.DetailsNumericMemoryColumn 194 columnConstructor: tr.ui.analysis.DetailsNumericMemoryColumn
195 }, 195 },
196 { 196 {
197 importance: 0, 197 importance: 0,
198 columnConstructor: tr.ui.analysis.DetailsNumericMemoryColumn 198 columnConstructor: tr.ui.analysis.DetailsNumericMemoryColumn
199 } 199 }
200 ]; 200 ];
201 201
202 Polymer({ 202 Polymer({
203 is: 'tr-ui-a-memory-dump-heap-details-pane', 203 is: 'tr-ui-a-memory-dump-heap-details-pane',
204 behaviors: [tr.ui.analysis.behaviors.StackedPane], 204 behaviors: [tr.ui.analysis.StackedPane],
205 205
206 created: function() { 206 created: function() {
207 this.heapDumps_ = undefined; 207 this.heapDumps_ = undefined;
208 this.aggregationMode_ = undefined; 208 this.aggregationMode_ = undefined;
209 this.viewMode_ = undefined; 209 this.viewMode_ = undefined;
210 }, 210 },
211 211
212 ready: function() { 212 ready: function() {
213 this.$.table.selectionMode = tr.ui.b.TableFormat.SelectionMode.ROW; 213 this.$.table.selectionMode = tr.ui.b.TableFormat.SelectionMode.ROW;
214 this.$.info_bar.message = 'Note: Values displayed in the heavy view ' + 214 this.$.info_bar.message = 'Note: Values displayed in the heavy view ' +
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 } 484 }
485 }); 485 });
486 486
487 return { 487 return {
488 // Exported for testing. 488 // Exported for testing.
489 RowDimension: RowDimension, 489 RowDimension: RowDimension,
490 AllocationCountColumn: AllocationCountColumn 490 AllocationCountColumn: AllocationCountColumn
491 }; 491 };
492 }); 492 });
493 </script> 493 </script>
OLDNEW
« no previous file with comments | « tracing/tracing/ui/analysis/memory_dump_header_pane.html ('k') | tracing/tracing/ui/analysis/memory_dump_overview_pane.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698