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

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

Issue 3012213002: tracing: Add private footprint (Closed)
Patch Set: Created 3 years, 3 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/fixed_color_scheme.html"> 8 <link rel="import" href="/tracing/base/fixed_color_scheme.html">
9 <link rel="import" href="/tracing/base/scalar.html"> 9 <link rel="import" href="/tracing/base/scalar.html">
10 <link rel="import" href="/tracing/base/unit.html"> 10 <link rel="import" href="/tracing/base/unit.html">
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 { 307 {
308 // All other columns. 308 // All other columns.
309 importance: 0, 309 importance: 0,
310 columnConstructor: UsedMemoryColumn 310 columnConstructor: UsedMemoryColumn
311 } 311 }
312 ]; 312 ];
313 313
314 // Map from ProcessMemoryDump totals fields to column names. 314 // Map from ProcessMemoryDump totals fields to column names.
315 UsedMemoryColumn.TOTALS_MAP = { 315 UsedMemoryColumn.TOTALS_MAP = {
316 'residentBytes': 'Total resident', 316 'residentBytes': 'Total resident',
317 'peakResidentBytes': 'Peak total resident' 317 'peakResidentBytes': 'Peak total resident',
318 'privateFootprintBytes': 'Private footprint',
318 }; 319 };
319 320
320 // Map from ProcessMemoryDump platform-specific totals fields to column names. 321 // Map from ProcessMemoryDump platform-specific totals fields to column names.
321 UsedMemoryColumn.PLATFORM_SPECIFIC_TOTALS_MAP = { 322 UsedMemoryColumn.PLATFORM_SPECIFIC_TOTALS_MAP = {
322 'vm': 'Total virtual', 323 'vm': 'Total virtual',
323 'swp': 'Swapped', 324 'swp': 'Swapped',
324 'pc': 'Private clean', 325 'pc': 'Private clean',
325 'pd': 'Private dirty', 326 'pd': 'Private dirty',
326 'sc': 'Shared clean', 327 'sc': 'Shared clean',
327 'sd': 'Shared dirty', 328 'sd': 'Shared dirty',
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
764 // All exports are for testing only. 765 // All exports are for testing only.
765 ProcessNameColumn, 766 ProcessNameColumn,
766 UsedMemoryColumn, 767 UsedMemoryColumn,
767 PeakMemoryColumn, 768 PeakMemoryColumn,
768 ByteStatColumn, 769 ByteStatColumn,
769 AllocatorColumn, 770 AllocatorColumn,
770 TracingColumn, 771 TracingColumn,
771 }; 772 };
772 }); 773 });
773 </script> 774 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698