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

Side by Side Diff: tracing/tracing/ui/analysis/memory_dump_allocator_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 (c) 2015 The Chromium Authors. All rights reserved. 3 Copyright (c) 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/iteration_helpers.html"> 8 <link rel="import" href="/tracing/base/iteration_helpers.html">
9 <link rel="import" href="/tracing/base/range.html"> 9 <link rel="import" href="/tracing/base/range.html">
10 <link rel="import" href="/tracing/model/memory_allocator_dump.html"> 10 <link rel="import" href="/tracing/model/memory_allocator_dump.html">
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
487 487
488 var DIAGNOSTIC_COLUMN_RULES = [ 488 var DIAGNOSTIC_COLUMN_RULES = [
489 { 489 {
490 importance: 0, 490 importance: 0,
491 columnConstructor: tr.ui.analysis.StringMemoryColumn 491 columnConstructor: tr.ui.analysis.StringMemoryColumn
492 } 492 }
493 ]; 493 ];
494 494
495 Polymer({ 495 Polymer({
496 is: 'tr-ui-a-memory-dump-allocator-details-pane', 496 is: 'tr-ui-a-memory-dump-allocator-details-pane',
497 behaviors: [tr.ui.analysis.behaviors.StackedPane], 497 behaviors: [tr.ui.analysis.StackedPane],
498 498
499 created: function() { 499 created: function() {
500 this.memoryAllocatorDumps_ = undefined; 500 this.memoryAllocatorDumps_ = undefined;
501 this.heapDumps_ = undefined; 501 this.heapDumps_ = undefined;
502 this.aggregationMode_ = undefined; 502 this.aggregationMode_ = undefined;
503 }, 503 },
504 504
505 ready: function() { 505 ready: function() {
506 this.$.table.selectionMode = tr.ui.b.TableFormat.SelectionMode.ROW; 506 this.$.table.selectionMode = tr.ui.b.TableFormat.SelectionMode.ROW;
507 }, 507 },
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
848 848
849 return { 849 return {
850 // All exports are for testing only. 850 // All exports are for testing only.
851 SUBALLOCATION_CONTEXT: SUBALLOCATION_CONTEXT, 851 SUBALLOCATION_CONTEXT: SUBALLOCATION_CONTEXT,
852 AllocatorDumpNameColumn: AllocatorDumpNameColumn, 852 AllocatorDumpNameColumn: AllocatorDumpNameColumn,
853 EffectiveSizeColumn: EffectiveSizeColumn, 853 EffectiveSizeColumn: EffectiveSizeColumn,
854 SizeColumn: SizeColumn 854 SizeColumn: SizeColumn
855 }; 855 };
856 }); 856 });
857 </script> 857 </script>
OLDNEW
« no previous file with comments | « tracing/tracing/ui/analysis/counter_sample_sub_view.html ('k') | tracing/tracing/ui/analysis/memory_dump_header_pane.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698