Index: tools/telemetry/telemetry/internal/platform/tracing_agent/chrome_devtools_tracing_agent.py |
diff --git a/tools/telemetry/telemetry/internal/platform/tracing_agent/chrome_tracing_agent.py b/tools/telemetry/telemetry/internal/platform/tracing_agent/chrome_devtools_tracing_agent.py |
similarity index 97% |
rename from tools/telemetry/telemetry/internal/platform/tracing_agent/chrome_tracing_agent.py |
rename to tools/telemetry/telemetry/internal/platform/tracing_agent/chrome_devtools_tracing_agent.py |
index 93365085ca3040c55394259c48325c85d9d37acb..827e2e145481b6e292049d2365024d2a20305efc 100644 |
--- a/tools/telemetry/telemetry/internal/platform/tracing_agent/chrome_tracing_agent.py |
+++ b/tools/telemetry/telemetry/internal/platform/tracing_agent/chrome_devtools_tracing_agent.py |
@@ -15,7 +15,7 @@ class ChromeTracingStoppedError(Exception): |
pass |
-class ChromeTracingAgent(tracing_agent.TracingAgent): |
+class ChromeDevtoolsTracingAgent(tracing_agent.TracingAgent): |
# A singleton map from platform backends to maps of uniquely-identifying |
# remote port (which may be the same as local port) to DevToolsClientBackend. |
# There is no guarantee that the devtools agent is still alive. |
@@ -24,7 +24,7 @@ class ChromeTracingAgent(tracing_agent.TracingAgent): |
_is_tracing_running_for_platform_backend.setdefault(False) |
def __init__(self, platform_backend): |
- super(ChromeTracingAgent, self).__init__(platform_backend) |
+ super(ChromeDevtoolsTracingAgent, self).__init__(platform_backend) |
@classmethod |
def _RemoveStaleDevToolsClient(cls, platform_backend): |