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

Unified Diff: mojo/services/html_viewer/html_document_view.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/services/html_viewer/html_document_view.cc
diff --git a/mojo/services/html_viewer/html_document_view.cc b/mojo/services/html_viewer/html_document_view.cc
index 400d8cab470c38587d8cf113c58a70c28e91d7e9..0ceb1012878201a47eafe87dca4dd618b484065e 100644
--- a/mojo/services/html_viewer/html_document_view.cc
+++ b/mojo/services/html_viewer/html_document_view.cc
@@ -154,14 +154,14 @@ blink::WebStorageNamespace* HTMLDocumentView::createSessionStorageNamespace() {
void HTMLDocumentView::initializeLayerTreeView() {
ServiceProviderPtr surfaces_service_provider;
- shell_->ConnectToApplication("mojo:mojo_surfaces_service",
+ shell_->ConnectToApplication("mojo:surfaces_service",
GetProxy(&surfaces_service_provider));
SurfacesServicePtr surfaces_service;
ConnectToService(surfaces_service_provider.get(), &surfaces_service);
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));
GpuPtr gpu_service;
ConnectToService(gpu_service_provider.get(), &gpu_service);

Powered by Google App Engine
This is Rietveld 408576698