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

Unified Diff: shell/native_application_support.cc

Issue 1067173003: Remove mojo:: part of mojo::shell:: nested namespace in //shell. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 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: shell/native_application_support.cc
diff --git a/shell/native_application_support.cc b/shell/native_application_support.cc
index 84643d18969ec26f359dc407b574250fff5bdd3f..e0e18be49f80c2a6d49c579d84c5f80ffb4f693c 100644
--- a/shell/native_application_support.cc
+++ b/shell/native_application_support.cc
@@ -17,7 +17,6 @@
#include "mojo/public/platform/native/system_impl_private_thunks.h"
#include "mojo/public/platform/native/system_thunks.h"
-namespace mojo {
namespace shell {
namespace {
@@ -56,8 +55,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,
+ mojo::InterfaceRequest<mojo::Application> application_request) {
// Tolerate |app_library| being null, to make life easier for callers.
if (!app_library)
return false;
@@ -127,4 +127,3 @@ bool RunNativeApplication(base::NativeLibrary app_library,
}
} // namespace shell
-} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698