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_ |