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

Unified Diff: services/shell/runner/host/native_application_support.cc

Issue 1882423004: Move shell service to toplevel shell namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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: services/shell/runner/host/native_application_support.cc
diff --git a/services/shell/runner/host/native_application_support.cc b/services/shell/runner/host/native_application_support.cc
index c9ab6fd5bf1441e335dcb0f03f6cadd09882f4d8..cb213748cf9721be148479d9f52e2997e875eafc 100644
--- a/services/shell/runner/host/native_application_support.cc
+++ b/services/shell/runner/host/native_application_support.cc
@@ -13,7 +13,6 @@
#include "mojo/platform_handle/platform_handle_private_thunks.h"
#include "mojo/public/platform/native/system_thunks.h"
-namespace mojo {
namespace shell {
namespace {
@@ -49,9 +48,8 @@ base::NativeLibrary LoadNativeApplication(const base::FilePath& app_path) {
return app_library;
}
-bool RunNativeApplication(
- base::NativeLibrary app_library,
- InterfaceRequest<mojom::ShellClient> request) {
+bool RunNativeApplication(base::NativeLibrary app_library,
+ mojom::ShellClientRequest request) {
// Tolerate |app_library| being null, to make life easier for callers.
if (!app_library)
return false;
@@ -106,4 +104,3 @@ bool RunNativeApplication(
}
} // namespace shell
-} // namespace mojo
« no previous file with comments | « services/shell/runner/host/native_application_support.h ('k') | services/shell/runner/host/out_of_process_native_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698