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

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

Issue 328553006: dmprof: Fix gpu matchers in android.browser policy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 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 | no next file » | 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 388ab414c5ab6b667b755fb797b30ff76c9fc98c..f5fe68ec7c18d5a7c2e179d4f3bc785d03cf1dc4 100644
--- a/tools/deep_memory_profiler/policy.android.browser.json
+++ b/tools/deep_memory_profiler/policy.android.browser.json
@@ -28,7 +28,8 @@
"unhooked-other",
"no-bucket",
"mmap-gpu-transferbuffer",
- "mmap-gpu-ringbuffer",
+ "mmap-gpu-command-ringbuffer",
+ "mmap-gpu-transfer-ringbuffer",
"mmap-catch-all",
"tc-disk_cache-backing",
"tc-disk_cache-other",
@@ -201,15 +202,20 @@
},
{
"name": "mmap-gpu-transferbuffer",
- "stacktrace": ".*gpu::TransferBufferManager::RegisterTransferBuffer.*",
+ "stacktrace": ".*content::GpuCommandBufferStub::OnRegisterTransferBuffer.*",
"allocator": "mmap"
},
{
- "name": "mmap-gpu-ringbuffer",
+ "name": "mmap-gpu-command-ringbuffer",
"stacktrace": ".*gpu::CommandBufferHelper::AllocateRingBuffer.*",
"allocator": "mmap"
},
{
+ "name": "mmap-gpu-transfer-ringbuffer",
+ "stacktrace": ".*gpu::TransferBuffer::AllocateRingBuffer.*",
+ "allocator": "mmap"
+ },
+ {
"name": "mmap-catch-all",
"stacktrace": ".*",
"allocator": "mmap"
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698