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

Unified Diff: components/mus/android_loader.cc

Issue 1679573002: Move shell interfaces into the shell.mojom namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@delegate
Patch Set: . Created 4 years, 10 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
« no previous file with comments | « components/mus/android_loader.h ('k') | components/pdf_viewer/pdf_viewer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/android_loader.cc
diff --git a/components/mus/android_loader.cc b/components/mus/android_loader.cc
index e9102259fc7c0310122bfac7889d5d80a05767f7..eeaddf43faad8c1dc2edfc47ff10161e7dd1d704 100644
--- a/components/mus/android_loader.cc
+++ b/components/mus/android_loader.cc
@@ -14,10 +14,10 @@ AndroidLoader::~AndroidLoader() {}
void AndroidLoader::Load(
const GURL& url,
- mojo::InterfaceRequest<mojo::Application> application_request) {
- DCHECK(application_request.is_pending());
+ mojo::InterfaceRequest<mojo::shell::mojom::Application> request) {
+ DCHECK(request.is_pending());
app_.reset(new mojo::ApplicationImpl(new MandolineUIServicesApp,
- std::move(application_request)));
+ std::move(request)));
}
} // namespace mus
« no previous file with comments | « components/mus/android_loader.h ('k') | components/pdf_viewer/pdf_viewer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698