Index: systrace/profile_chrome/atrace_tracing_agent_unittest.py |
diff --git a/systrace/profile_chrome/atrace_tracing_agent_unittest.py b/systrace/profile_chrome/atrace_tracing_agent_unittest.py |
index 8460e9b491bd8b63d4cab7a82a79d3b3bec9c2d7..8ef19d7b38e853fd9b200cd3b2fb4eb5f5da3a6f 100644 |
--- a/systrace/profile_chrome/atrace_tracing_agent_unittest.py |
+++ b/systrace/profile_chrome/atrace_tracing_agent_unittest.py |
@@ -14,14 +14,12 @@ class AtraceAgentTest(agents_unittest.BaseAgentTest): |
assert 'gfx' in ' '.join(categories) |
def testTracing(self): |
- categories = ['gfx', 'input', 'view'] |
Sami
2016/08/26 15:53:43
Can we keep using these categories? I'm not sure w
washingtonp
2016/08/26 18:50:54
Done. Updated other profile_chrome unit tests as w
|
ring_buffer = False |
agent = atrace_tracing_agent.AtraceAgent(self.device, |
- categories, |
ring_buffer) |
try: |
- agent.StartAgentTracing(None, None) |
+ agent.StartAgentTracing(atrace_tracing_agent.AtraceConfig(None)) |
finally: |
agent.StopAgentTracing() |
result = agent.GetResults() |