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

Unified Diff: tools/telemetry/telemetry/core/platform/profiler/trace_profiler.py

Issue 745493002: Profile FreeList (chromium side) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
Index: tools/telemetry/telemetry/core/platform/profiler/trace_profiler.py
diff --git a/tools/telemetry/telemetry/core/platform/profiler/trace_profiler.py b/tools/telemetry/telemetry/core/platform/profiler/trace_profiler.py
index 089b0388e0f2e5e0d86e14c2dfdc1f7062865497..f24ada967bb0c14a9725034b848156428b76f253 100644
--- a/tools/telemetry/telemetry/core/platform/profiler/trace_profiler.py
+++ b/tools/telemetry/telemetry/core/platform/profiler/trace_profiler.py
@@ -70,3 +70,13 @@ class TraceAllProfiler(TraceProfiler):
@classmethod
def name(cls):
return 'trace-all'
+
+class TraceBlinkGCProfiler(TraceProfiler):
+ def __init__(self, browser_backend, platform_backend, output_path, state):
+ super(TraceBlinkGCProfiler, self).__init__(
+ browser_backend, platform_backend, output_path, state,
+ categories='blink_gc,webkit.console,benchmark,blink.console')
keishi 2015/01/27 09:42:29 I added this to make the tracing json file smaller
+ @classmethod
+ def name(cls):
+ return 'trace-blinkgc'
+

Powered by Google App Engine
This is Rietveld 408576698