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

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

Issue 457823004: telemetry: Pass systrace categories properly (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 6 years, 4 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/telemetry/telemetry/core/platform/profiler/android_systrace_profiler_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/core/platform/profiler/android_systrace_profiler.py
diff --git a/tools/telemetry/telemetry/core/platform/profiler/android_systrace_profiler.py b/tools/telemetry/telemetry/core/platform/profiler/android_systrace_profiler.py
index 742ec31eef86c418bdec0b48cf3e032404c09c67..38851109ef4e4d7fd372eac40085905170ef149b 100644
--- a/tools/telemetry/telemetry/core/platform/profiler/android_systrace_profiler.py
+++ b/tools/telemetry/telemetry/core/platform/profiler/android_systrace_profiler.py
@@ -37,7 +37,8 @@ class AndroidSystraceProfiler(profiler.Profiler):
['python', os.path.join(util.GetChromiumSrcDir(), 'tools',
'profile_chrome.py'),
'--categories', '', '--continuous', '--output',
- self._systrace_output_path, '--systrace'] + _SYSTRACE_CATEGORIES,
+ self._systrace_output_path, '--json', '--systrace',
+ ','.join(_SYSTRACE_CATEGORIES)],
stdin=subprocess.PIPE, stdout=subprocess.PIPE)
@classmethod
« no previous file with comments | « no previous file | tools/telemetry/telemetry/core/platform/profiler/android_systrace_profiler_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698