| Index: tools/perf/perf_tools/__init__.py
|
| diff --git a/tools/perf/perf_tools/__init__.py b/tools/perf/perf_tools/__init__.py
|
| index 525a2742a359fb0f15cdf0929c15cf40bc9031ba..910690709428b43b541becdf818659c65b0422eb 100644
|
| --- a/tools/perf/perf_tools/__init__.py
|
| +++ b/tools/perf/perf_tools/__init__.py
|
| @@ -6,9 +6,9 @@ import os
|
| import sys
|
|
|
| def Init():
|
| - crc_path = os.path.join(os.path.dirname(__file__),
|
| - '..', '..', 'chrome_remote_control')
|
| - absolute_crc_path = os.path.abspath(crc_path)
|
| - sys.path.append(absolute_crc_path)
|
| + telemetry_path = os.path.join(os.path.dirname(__file__),
|
| + '..', '..', 'telemetry')
|
| + absolute_telemetry_path = os.path.abspath(telemetry_path)
|
| + sys.path.append(absolute_telemetry_path)
|
|
|
| Init()
|
|
|