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

Unified Diff: sky/tools/test_perf

Issue 701933004: Change mojo url to always use mojo:foo instead of mojo://foo (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Follow review Created 6 years, 1 month 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
« no previous file with comments | « sky/tools/skydb ('k') | sky/tools/webkitpy/layout_tests/port/base.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/tools/test_perf
diff --git a/sky/tools/test_perf b/sky/tools/test_perf
index 02d4ea095d541968f9df2af7f11e777001685975..b9db1494909ebc235782d57217bf3f51b7c47297 100755
--- a/sky/tools/test_perf
+++ b/sky/tools/test_perf
@@ -71,14 +71,14 @@ class PerfHarness(object):
])
def _sky_tester_command(self, url):
- content_handlers = ['%s,%s' % (mime_type, 'mojo://sky_viewer/')
+ content_handlers = ['%s,%s' % (mime_type, 'mojo:sky_viewer')
for mime_type in SUPPORTED_MIME_TYPES]
return [
self.paths.mojo_shell_path,
- '--args-for=mojo://native_viewport_service/ --use-headless-config --use-osmesa',
- '--args-for=mojo://window_manager/ %s' % url,
+ '--args-for=mojo:native_viewport_service --use-headless-config --use-osmesa',
+ '--args-for=mojo:window_manager %s' % url,
'--content-handlers=%s' % ','.join(content_handlers),
- '--url-mappings=mojo:window_manager=mojo://sky_tester/',
+ '--url-mappings=mojo:window_manager=mojo:sky_tester',
'mojo:window_manager',
]
« no previous file with comments | « sky/tools/skydb ('k') | sky/tools/webkitpy/layout_tests/port/base.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698