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

Unified Diff: shell/in_process_native_runner.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/in_process_native_runner.h
diff --git a/shell/in_process_native_runner.h b/shell/in_process_native_runner.h
index f67373468c3ccf8f322ce433fd5ca62bd7e9a045..0d5e8703139c1aad387bb79ebdc3ebc05bad95ff 100644
--- a/shell/in_process_native_runner.h
+++ b/shell/in_process_native_runner.h
@@ -14,7 +14,6 @@
#include "shell/application_manager/native_runner.h"
#include "shell/native_application_support.h"
-namespace mojo {
namespace shell {
class Context;
@@ -30,7 +29,7 @@ class InProcessNativeRunner : public NativeRunner,
// |NativeRunner| method:
void Start(const base::FilePath& app_path,
NativeApplicationCleanup cleanup,
- InterfaceRequest<Application> application_request,
+ mojo::InterfaceRequest<mojo::Application> application_request,
const base::Closure& app_completed_callback) override;
private:
@@ -39,7 +38,7 @@ class InProcessNativeRunner : public NativeRunner,
base::FilePath app_path_;
NativeApplicationCleanup cleanup_;
- InterfaceRequest<Application> application_request_;
+ mojo::InterfaceRequest<mojo::Application> application_request_;
base::Callback<bool(void)> app_completed_callback_runner_;
base::ScopedNativeLibrary app_library_;
@@ -62,6 +61,5 @@ class InProcessNativeRunnerFactory : public NativeRunnerFactory {
};
} // namespace shell
-} // namespace mojo
#endif // SHELL_IN_PROCESS_NATIVE_RUNNER_H_

Powered by Google App Engine
This is Rietveld 408576698