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

Side by Side Diff: tools/deep_memory_profiler/sorters/malloc.renderer-module.json

Issue 398933003: Catch up to the namespace rename from WebCore to blink in dmprof. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add sorters Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "type": "sorter", 2 "type": "sorter",
3 "version": 1, 3 "version": 1,
4 "world": "malloc", 4 "world": "malloc",
5 "name": "renderer-module", 5 "name": "renderer-module",
6 "order": {}, 6 "order": {},
7 "rules": [ 7 "rules": [
8 { 8 {
9 "name": "V8", 9 "name": "V8",
10 "backtrace_function": ".*v8::.*" 10 "backtrace_function": ".*v8::.*"
11 }, 11 },
12 { 12 {
13 "name": "Skia", 13 "name": "Skia",
14 "backtrace_function": ".* Sk[A-Z][A-Za-z0-9_]+::.*" 14 "backtrace_function": ".* Sk[A-Z][A-Za-z0-9_]+::.*"
15 }, 15 },
16 { 16 {
17 "name": "WebCore", 17 "name": "WebCore",
18 "subs": [ 18 "subs": [
19 [ "malloc", "WebCore" ] 19 [ "malloc", "WebCore" ]
20 ], 20 ],
21 "backtrace_function": ".*WebCore::.*" 21 "backtrace_function": ".*(WebCore|blink)::.*"
22 }, 22 },
23 { 23 {
24 "name": "Blink-others", 24 "name": "Blink-others",
25 "backtrace_function": ".*(WTF::|WebKit::).*" 25 "backtrace_function": ".*(WTF::|WebKit::).*"
26 }, 26 },
27 { 27 {
28 "name": "others", 28 "name": "others",
29 "backtrace_function": ".*" 29 "backtrace_function": ".*"
30 } 30 }
31 ] 31 ]
32 } 32 }
OLDNEW
« no previous file with comments | « tools/deep_memory_profiler/sorters/malloc.WebCore.json ('k') | tools/deep_memory_profiler/sorters/malloc.type.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698