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

Unified Diff: shell/application_manager/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/application_manager/native_runner.h
diff --git a/shell/application_manager/native_runner.h b/shell/application_manager/native_runner.h
index 5317cbb2c924f030f0a4b6d0057d91c221bf0cb5..e18f214101647c7d5e1cb3fe429de7a233573c62 100644
--- a/shell/application_manager/native_runner.h
+++ b/shell/application_manager/native_runner.h
@@ -15,7 +15,6 @@ namespace base {
class FilePath;
}
-namespace mojo {
namespace shell {
// ApplicationManager requires implementations of NativeRunner and
@@ -32,10 +31,11 @@ class NativeRunner {
// TODO(vtl): |app_path| and |cleanup| should probably be moved to the
// factory's Create(). Rationale: The factory may need information from the
// file to decide what kind of NativeRunner to make.
- virtual void Start(const base::FilePath& app_path,
- NativeApplicationCleanup cleanup,
- InterfaceRequest<Application> application_request,
- const base::Closure& app_completed_callback) = 0;
+ virtual void Start(
+ const base::FilePath& app_path,
+ NativeApplicationCleanup cleanup,
+ mojo::InterfaceRequest<mojo::Application> application_request,
+ const base::Closure& app_completed_callback) = 0;
};
class NativeRunnerFactory {
@@ -54,6 +54,5 @@ class NativeRunnerFactory {
};
} // namespace shell
-} // namespace mojo
#endif // SHELL_APPLICATION_MANAGER_NATIVE_RUNNER_H_

Powered by Google App Engine
This is Rietveld 408576698