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

Unified Diff: tools/android/loading/tracing.py

Issue 1924453002: clovis: Enable the disable-by-default-blink.debug.layout tracing category. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments. Created 4 years, 8 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/android/loading/user_satisfied_lens.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android/loading/tracing.py
diff --git a/tools/android/loading/tracing.py b/tools/android/loading/tracing.py
index c1ecf7155adaef9292e99ffb74809d1924e50a82..068c5b6b1fa67a894f1f6b0b0df97e44ddb01c3b 100644
--- a/tools/android/loading/tracing.py
+++ b/tools/android/loading/tracing.py
@@ -14,9 +14,9 @@ import devtools_monitor
_DISABLED_CATEGORIES = ('cc',) # Contains a lot of events, none of which we use.
INITIAL_CATEGORIES = (
- 'toplevel', 'blink', 'v8', 'java', 'devtools.timeline',
- 'blink.user_timing', 'blink.net') + tuple(
- '-' + cat for cat in _DISABLED_CATEGORIES)
+ ('toplevel', 'blink', 'v8', 'java', 'devtools.timeline',
+ 'blink.user_timing', 'blink.net', 'disabled-by-default-blink.debug.layout')
+ + tuple('-' + cat for cat in _DISABLED_CATEGORIES))
class TracingTrack(devtools_monitor.Track):
« no previous file with comments | « no previous file | tools/android/loading/user_satisfied_lens.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698