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

Unified Diff: mojo/aura/surface_binding.cc

Issue 668483002: Change mojo URLs from mojo://mojo_foo to mojo://foo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 2 months 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: mojo/aura/surface_binding.cc
diff --git a/mojo/aura/surface_binding.cc b/mojo/aura/surface_binding.cc
index 3c9584eb6db3c518a7dc6db7652d0d803e67f848..fc1d31ae8e496bd4b8a57e0b4f9564eb39d604d0 100644
--- a/mojo/aura/surface_binding.cc
+++ b/mojo/aura/surface_binding.cc
@@ -205,7 +205,7 @@ void SurfaceBinding::PerViewManagerState::Init() {
DCHECK(!surfaces_service_.get());
ServiceProviderPtr surfaces_service_provider;
- shell_->ConnectToApplication("mojo:mojo_surfaces_service",
+ shell_->ConnectToApplication("mojo:surfaces_service",
GetProxy(&surfaces_service_provider));
ConnectToService(surfaces_service_provider.get(), &surfaces_service_);
// base::Unretained is ok here as we block until the call is received.
@@ -221,8 +221,8 @@ void SurfaceBinding::PerViewManagerState::Init() {
surface_.set_client(surface_client_.get());
ServiceProviderPtr gpu_service_provider;
- // TODO(jamesr): Should be mojo:mojo_gpu_service
- shell_->ConnectToApplication("mojo:mojo_native_viewport_service",
+ // TODO(jamesr): Should be mojo:gpu_service
+ shell_->ConnectToApplication("mojo:native_viewport_service",
GetProxy(&gpu_service_provider));
ConnectToService(gpu_service_provider.get(), &gpu_);
}

Powered by Google App Engine
This is Rietveld 408576698