| Index: mojo/shell/runner/host/native_application_support.h
|
| diff --git a/mojo/shell/runner/host/native_application_support.h b/mojo/shell/runner/host/native_application_support.h
|
| index d9ece609e896de773b6389752f93828db713839f..88daad347a05adbd9ade11b92c1ac7e0066cf5e9 100644
|
| --- a/mojo/shell/runner/host/native_application_support.h
|
| +++ b/mojo/shell/runner/host/native_application_support.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include "base/native_library.h"
|
| #include "mojo/public/cpp/bindings/interface_request.h"
|
| +#include "mojo/shell/public/interfaces/application.mojom.h"
|
|
|
| namespace base {
|
| class FilePath;
|
| @@ -32,8 +33,9 @@ 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,
|
| + InterfaceRequest<mojom::Application> application_request);
|
|
|
| } // namespace shell
|
| } // namespace mojo
|
|
|