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

Unified Diff: tools/memory_inspector/memory_inspector/frontends/www_content/js/mmap.js

Issue 559023002: [Android] memory_inspector: bug / UI fixes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mi1_heapdump_sigstop
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/js/mmap.js
diff --git a/tools/memory_inspector/memory_inspector/frontends/www_content/js/mmap.js b/tools/memory_inspector/memory_inspector/frontends/www_content/js/mmap.js
index 5113fc155baff6c3f92d16a7dc2abd036523ce3d..1753fbdb641c05b5a2f1eaa814948720ccc208cf 100644
--- a/tools/memory_inspector/memory_inspector/frontends/www_content/js/mmap.js
+++ b/tools/memory_inspector/memory_inspector/frontends/www_content/js/mmap.js
@@ -8,13 +8,18 @@ this.COL_START = 0;
this.COL_END = 1;
this.COL_LEN = 2;
this.COL_PROT = 3;
-this.COL_PRIV_DIRTY = 4;
-this.COL_PRIV_CLEAN = 5;
-this.COL_SHARED_DIRTY = 6;
-this.COL_SHARED_CLEAN = 7;
-this.COL_FILE = 8;
-this.COL_RESIDENT = 10;
-this.SHOW_COLUMNS = [0, 1, 2, 3, 4, 5, 6, 7, 8];
+this.COL_RSS = 4;
+this.COL_PRIV_DIRTY = 5;
+this.COL_PRIV_CLEAN = 6;
+this.COL_SHARED_DIRTY = 7;
+this.COL_SHARED_CLEAN = 8;
+this.COL_FILE = 9;
+this.COL_OFFSET = 10;
+this.COL_RESIDENT = 11;
+this.SHOW_COLUMNS = [this.COL_START, this.COL_END, this.COL_LEN, this.COL_PROT,
+ this.COL_RSS, this.COL_PRIV_DIRTY, this.COL_PRIV_CLEAN,
+ this.COL_SHARED_DIRTY, this.COL_SHARED_CLEAN, this.COL_FILE];
+
this.PAGE_SIZE = 4096;
this.mapsData_ = null;

Powered by Google App Engine
This is Rietveld 408576698