| Index: telemetry/telemetry/internal/platform/tracing_agent/cpu_tracing_agent.py
|
| diff --git a/telemetry/telemetry/internal/platform/tracing_agent/cpu_tracing_agent.py b/telemetry/telemetry/internal/platform/tracing_agent/cpu_tracing_agent.py
|
| index 44cc1b10c9e58047ed54086e0f28553ac4ba15b6..d176aba67509f27464525897584bda97703c6799 100644
|
| --- a/telemetry/telemetry/internal/platform/tracing_agent/cpu_tracing_agent.py
|
| +++ b/telemetry/telemetry/internal/platform/tracing_agent/cpu_tracing_agent.py
|
| @@ -159,7 +159,10 @@ class CpuTracingAgent(tracing_agent.TracingAgent):
|
| @classmethod
|
| def IsSupported(cls, platform_backend):
|
| os_name = platform_backend.GetOSName()
|
| - return (os_name in ['mac', 'linux']) or (os_name == 'win' and psutil)
|
| + # TODO(charliea): Reenable this once the CPU tracing agent is fixed on
|
| + # Windows.
|
| + # http://crbug.com/647443
|
| + return (os_name in ['mac', 'linux'])
|
|
|
| def StartAgentTracing(self, config, timeout):
|
| assert not self._snapshot_ongoing, (
|
|
|