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

Unified Diff: sky/viewer/document_view.cc

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/webkitpy/layout_tests/port/base.py ('k') | sky/viewer/platform/platform_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/viewer/document_view.cc
diff --git a/sky/viewer/document_view.cc b/sky/viewer/document_view.cc
index f7c002ab79b3beb22d847cef6ea6a71e7ccad9b8..6eafdd25a4b579906eb93bf1136268ac2ca0f2f8 100644
--- a/sky/viewer/document_view.cc
+++ b/sky/viewer/document_view.cc
@@ -134,14 +134,14 @@ void DocumentView::Load(mojo::URLResponsePtr response) {
blink::WebLayerTreeView* DocumentView::initializeLayerTreeView() {
mojo::ServiceProviderPtr surfaces_service_provider;
- shell_->ConnectToApplication("mojo://surfaces_service/",
+ shell_->ConnectToApplication("mojo:surfaces_service",
mojo::GetProxy(&surfaces_service_provider));
mojo::InterfacePtr<mojo::SurfacesService> surfaces_service;
mojo::ConnectToService(surfaces_service_provider.get(), &surfaces_service);
mojo::ServiceProviderPtr gpu_service_provider;
- // TODO(jamesr): Should be mojo://gpu_service
- shell_->ConnectToApplication("mojo://native_viewport_service/",
+ // TODO(jamesr): Should be mojo:gpu_service
+ shell_->ConnectToApplication("mojo:native_viewport_service",
mojo::GetProxy(&gpu_service_provider));
mojo::InterfacePtr<mojo::Gpu> gpu_service;
mojo::ConnectToService(gpu_service_provider.get(), &gpu_service);
« no previous file with comments | « sky/tools/webkitpy/layout_tests/port/base.py ('k') | sky/viewer/platform/platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698