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

Unified Diff: systrace/systrace/systrace_runner.py

Issue 3018533002: Implementing a Monsoon power monitor trace agent, utilizing the UI infrastructure that the BattOr a…
Patch Set: Updating static methods and fixing test fakes. Created 3 years, 3 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: systrace/systrace/systrace_runner.py
diff --git a/systrace/systrace/systrace_runner.py b/systrace/systrace/systrace_runner.py
index b3d932475f5761391e81340368f324854a7cff8d..cca4a1c3f2d0b517f23bd2e6db64a188d8bdf066 100644
--- a/systrace/systrace/systrace_runner.py
+++ b/systrace/systrace/systrace_runner.py
@@ -15,12 +15,14 @@ from systrace.tracing_agents import atrace_agent
from systrace.tracing_agents import atrace_from_file_agent
from systrace.tracing_agents import atrace_process_dump
from systrace.tracing_agents import battor_trace_agent
+from systrace.tracing_agents import monsoon_agent
from systrace.tracing_agents import ftrace_agent
from systrace.tracing_agents import walt_agent
AGENT_MODULES = [android_process_data_agent, atrace_agent,
atrace_from_file_agent, atrace_process_dump,
- battor_trace_agent, ftrace_agent, walt_agent]
+ battor_trace_agent, ftrace_agent, walt_agent,
+ monsoon_agent]
class SystraceRunner(object):
def __init__(self, script_dir, options):

Powered by Google App Engine
This is Rietveld 408576698