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

Unified Diff: mojo/shell/runner/host/native_application_support.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
Index: mojo/shell/runner/host/native_application_support.cc
diff --git a/mojo/shell/runner/host/native_application_support.cc b/mojo/shell/runner/host/native_application_support.cc
index cdc6685ba1bfd76300005a12ffc4fbafdaf49ed9..eeccef913ee5987162f78479f8e836e9c6d9a93d 100644
--- a/mojo/shell/runner/host/native_application_support.cc
+++ b/mojo/shell/runner/host/native_application_support.cc
@@ -52,8 +52,9 @@ base::NativeLibrary LoadNativeApplication(const base::FilePath& app_path) {
return app_library;
}
-bool RunNativeApplication(base::NativeLibrary app_library,
- InterfaceRequest<Application> application_request) {
+bool RunNativeApplication(
+ base::NativeLibrary app_library,
+ InterfaceRequest<mojom::Application> application_request) {
// Tolerate |app_library| being null, to make life easier for callers.
if (!app_library)
return false;
« no previous file with comments | « mojo/shell/runner/host/native_application_support.h ('k') | mojo/shell/runner/host/out_of_process_native_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698