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

Unified Diff: tools/deep_memory_profiler/policy.android.browser.json

Issue 18710003: Android / dmprof: explodes policies for shared areas. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove pvrsrvkm Created 7 years, 5 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
« no previous file with comments | « no previous file | tools/deep_memory_profiler/policy.android.renderer.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/deep_memory_profiler/policy.android.browser.json
diff --git a/tools/deep_memory_profiler/policy.android.browser.json b/tools/deep_memory_profiler/policy.android.browser.json
index e34fee725326e94dc32b86fa2066c8c2a6653f92..4023fea5a81a7b62e31eaa7f3648a92736c790fb 100644
--- a/tools/deep_memory_profiler/policy.android.browser.json
+++ b/tools/deep_memory_profiler/policy.android.browser.json
@@ -17,9 +17,11 @@
"unhooked-chrome-dex",
"unhooked-other-ashmem",
"unhooked-anonymous",
- "unhooked-file-exec-lib-chrome",
+ "unhooked-file-exec-lib-chrome-shared",
+ "unhooked-file-exec-lib-chrome-private",
"unhooked-file-exec",
- "unhooked-file-nonexec-lib-chrome",
+ "unhooked-file-nonexec-lib-chrome-shared",
+ "unhooked-file-nonexec-lib-chrome-private",
"unhooked-file-nonexec",
"unhooked-stack",
"unhooked-other",
@@ -145,10 +147,18 @@
"allocator": "unhooked"
},
{
- "name": "unhooked-file-exec-lib-chrome",
+ "name": "unhooked-file-exec-lib-chrome-shared",
"mappedpathname": "^/.*?(chromeview|content).*",
"mappedpermission": "..x.",
- "allocator": "unhooked"
+ "allocator": "unhooked",
+ "sharedwith": ["group", "others"]
+ },
+ {
+ "name": "unhooked-file-exec-lib-chrome-private",
+ "mappedpathname": "^/.*?(chromeview|content).*",
+ "mappedpermission": "..x.",
+ "allocator": "unhooked",
+ "sharedwith": ["private"]
},
{
"name": "unhooked-file-exec",
@@ -157,9 +167,16 @@
"allocator": "unhooked"
},
{
- "name": "unhooked-file-nonexec-lib-chrome",
+ "name": "unhooked-file-nonexec-lib-chrome-shared",
"mappedpathname": "^/.*?(chromeview|content).*",
- "allocator": "unhooked"
+ "allocator": "unhooked",
+ "sharedwith": ["group", "others"]
+ },
+ {
+ "name": "unhooked-file-nonexec-lib-chrome-private",
+ "mappedpathname": "^/.*?(chromeview|content).*",
+ "allocator": "unhooked",
+ "sharedwith": ["private"]
},
{
"name": "unhooked-file-nonexec",
« no previous file with comments | « no previous file | tools/deep_memory_profiler/policy.android.renderer.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698