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

Unified Diff: tools/telemetry/telemetry/internal/platform/tracing_agent/chrome_devtools_tracing_agent.py

Issue 1254383017: [Telemetry] Rename chrome_tracing_agent to chrome_devtools_tracing_agent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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/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):

Powered by Google App Engine
This is Rietveld 408576698