summaryrefslogtreecommitdiffstats
path: root/tools/profile_chrome
diff options
context:
space:
mode:
authorskyostil <skyostil@chromium.org>2014-11-14 06:51:46 -0800
committerCommit bot <commit-bot@chromium.org>2014-11-14 14:52:02 +0000
commit2d4cf1c70ba5932e53c6b82ee4736c9e41631fbe (patch)
tree667ba58a2d21dfb6278120f4bf6f3dc5a8fe442c /tools/profile_chrome
parent741539524e6c6b17cf4e9f9d83ad5a9ac744f255 (diff)
downloadchromium_src-2d4cf1c70ba5932e53c6b82ee4736c9e41631fbe.zip
chromium_src-2d4cf1c70ba5932e53c6b82ee4736c9e41631fbe.tar.gz
chromium_src-2d4cf1c70ba5932e53c6b82ee4736c9e41631fbe.tar.bz2
adb_profile_chrome: Make --trace-scheduler activate renderer scheduler tracing
BUG=391005 Review URL: https://codereview.chromium.org/721133004 Cr-Commit-Position: refs/heads/master@{#304210}
Diffstat (limited to 'tools/profile_chrome')
-rwxr-xr-xtools/profile_chrome/main.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/profile_chrome/main.py b/tools/profile_chrome/main.py
index 059ce35..1dbf08a 100755
--- a/tools/profile_chrome/main.py
+++ b/tools/profile_chrome/main.py
@@ -36,8 +36,9 @@ def _ComputeChromeCategories(options):
if options.trace_memory:
categories.append('disabled-by-default-memory')
if options.trace_scheduler:
- categories.append('disabled-by-default-cc.debug.scheduler')
categories.append('disabled-by-default-blink.scheduler')
+ categories.append('disabled-by-default-cc.debug.scheduler')
+ categories.append('disabled-by-default-renderer.scheduler')
if options.chrome_categories:
categories += options.chrome_categories.split(',')
return categories