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

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

Issue 15093008: Telemetry: integrates memory_measurement with TCMalloc dumps (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments Created 7 years, 7 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
Index: tools/telemetry/telemetry/core/platform/profiler/profiler_finder.py
diff --git a/tools/telemetry/telemetry/core/platform/profiler/profiler_finder.py b/tools/telemetry/telemetry/core/platform/profiler/profiler_finder.py
index 9ae251084ebbb64a75d2d665f9eed3b2a5c24de3..22f08e026e0cec571f74a3806d3fb3bdccd8ec6f 100644
--- a/tools/telemetry/telemetry/core/platform/profiler/profiler_finder.py
+++ b/tools/telemetry/telemetry/core/platform/profiler/profiler_finder.py
@@ -5,11 +5,14 @@
from telemetry.core.platform.profiler import iprofiler_profiler
from telemetry.core.platform.profiler import perf_profiler
from telemetry.core.platform.profiler import sample_profiler
+from telemetry.core.platform.profiler import tcmalloc_profiler
-
-_PROFILERS = [iprofiler_profiler.IprofilerProfiler,
- perf_profiler.PerfProfiler,
- sample_profiler.SampleProfiler]
+_PROFILERS = [
+ iprofiler_profiler.IprofilerProfiler,
+ perf_profiler.PerfProfiler,
+ sample_profiler.SampleProfiler,
+ tcmalloc_profiler.TCMallocProfilerFactory,
Dai Mikurube (NOT FULLTIME) 2013/05/14 15:07:07 TCMalloc has another profiler than heap profiler:
bulach 2013/05/14 15:34:17 ahn, I didn't know that. :) thanks! added the "Hea
+]
def FindProfiler(name):

Powered by Google App Engine
This is Rietveld 408576698