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

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: Remove calls to AddStandardScheme 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
Index: sky/tools/test_perf
diff --git a/sky/tools/test_perf b/sky/tools/test_perf
index 02d4ea095d541968f9df2af7f11e777001685975..78f5acc5153f09e7efbe45279be0ff384a718f61 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',
]

Powered by Google App Engine
This is Rietveld 408576698