Index: tools/telemetry/examples/rendering_microbenchmark_test.py |
diff --git a/tools/chrome_remote_control/examples/rendering_microbenchmark_test.py b/tools/telemetry/examples/rendering_microbenchmark_test.py |
similarity index 91% |
rename from tools/chrome_remote_control/examples/rendering_microbenchmark_test.py |
rename to tools/telemetry/examples/rendering_microbenchmark_test.py |
index 4dd26ed42f5ff0ae55b7ae62f3b105c04d1e9167..9976c7401313b6c16b2fbd8e19c6017414e17008 100755 |
--- a/tools/chrome_remote_control/examples/rendering_microbenchmark_test.py |
+++ b/tools/telemetry/examples/rendering_microbenchmark_test.py |
@@ -8,10 +8,10 @@ import sys |
sys.path.append(os.path.join(os.path.dirname(__file__), '..')) |
-import chrome_remote_control |
+import telemetry |
def Main(args): |
- options = chrome_remote_control.BrowserOptions() |
+ options = telemetry.BrowserOptions() |
parser = options.CreateParser('rendering_microbenchmark_test.py <sitelist>') |
# TODO(nduca): Add test specific options here, if any. |
options, args = parser.parse_args(args) |
@@ -28,10 +28,10 @@ def Main(args): |
urls.append(url) |
options.extra_browser_args.append('--enable-gpu-benchmarking') |
- browser_to_create = chrome_remote_control.FindBrowser(options) |
+ browser_to_create = telemetry.FindBrowser(options) |
if not browser_to_create: |
sys.stderr.write('No browser found! Supported types: %s' % |
- chrome_remote_control.GetAllAvailableBrowserTypes(options)) |
+ telemetry.GetAllAvailableBrowserTypes(options)) |
return 255 |
with browser_to_create.Create() as b: |
with b.ConnectToNthTab(0) as tab: |