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

Unified Diff: tools/memory_inspector/memory_inspector/frontends/www_content/index.html

Issue 563183003: [Android] memory_inspector: add resident memory accounting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mi4
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: tools/memory_inspector/memory_inspector/frontends/www_content/index.html
diff --git a/tools/memory_inspector/memory_inspector/frontends/www_content/index.html b/tools/memory_inspector/memory_inspector/frontends/www_content/index.html
index a78820bb3153da21d67e5e2eeb165cd01f37a308..a3db078136c5364c24861e6651a0859fb83bd8fa 100644
--- a/tools/memory_inspector/memory_inspector/frontends/www_content/index.html
+++ b/tools/memory_inspector/memory_inspector/frontends/www_content/index.html
@@ -169,10 +169,14 @@
<div id="tabs-nheap">
<div id="nheap-toolbar" class="ui-widget-header ui-corner-all">
- <label>Totals: </label>
- <input type="text" id="nheap-totals" values="0 KB" readonly>
- <label>Selected: </label>
- <input type="text" id="nheap-selected" values="0 KB" readonly>
+ <label>Total (allocated): </label>
+ <input type="text" id="nheap-total-allocated" values="0 KB" readonly>
+ <label>Total (resident): </label>
+ <input type="text" id="nheap-total-resident" values="0 KB" readonly>
+ <label>Selected (allocated): </label>
+ <input type="text" id="nheap-selected-allocated" values="0 KB" readonly>
+ <label>Selected (resident): </label>
+ <input type="text" id="nheap-selected-resident" values="0 KB" readonly>
<label>Filter: </label>
<input type="text" id="nheap-filter">
</div>

Powered by Google App Engine
This is Rietveld 408576698