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

Unified Diff: shell/native_application_support.h

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.h
diff --git a/shell/native_application_support.h b/shell/native_application_support.h
index f01e5c3be61b41ddd6a149de7879df0cdf31e439..2c3b0db615bce63039a0f4b0240326c7f9082ea5 100644
--- a/shell/native_application_support.h
+++ b/shell/native_application_support.h
@@ -13,8 +13,8 @@ class FilePath;
}
namespace mojo {
-
class Application;
+} // namespace mojo
namespace shell {
@@ -38,10 +38,10 @@ base::NativeLibrary LoadNativeApplication(const base::FilePath& app_path,
// true if |MojoMain()| was called (even if it returns an error), and false
// otherwise.
// TODO(vtl): Maybe this should also have a |MojoResult| as an out parameter?
-bool RunNativeApplication(base::NativeLibrary app_library,
- InterfaceRequest<Application> application_request);
+bool RunNativeApplication(
+ base::NativeLibrary app_library,
+ mojo::InterfaceRequest<mojo::Application> application_request);
} // namespace shell
-} // namespace mojo
#endif // SHELL_NATIVE_APPLICATION_SUPPORT_H_

Powered by Google App Engine
This is Rietveld 408576698