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

Unified Diff: mojo/shell/runner/host/in_process_native_runner.h

Issue 1679573002: Move shell interfaces into the shell.mojom namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@delegate
Patch Set: . Created 4 years, 10 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
« no previous file with comments | « mojo/shell/runner/host/child_process_host.cc ('k') | mojo/shell/runner/host/in_process_native_runner.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/runner/host/in_process_native_runner.h
diff --git a/mojo/shell/runner/host/in_process_native_runner.h b/mojo/shell/runner/host/in_process_native_runner.h
index d2759c24077460d4988308b1b0b097dbf7fe5b4b..c167112f0b71d72815926885bea8e574bc3c3b6c 100644
--- a/mojo/shell/runner/host/in_process_native_runner.h
+++ b/mojo/shell/runner/host/in_process_native_runner.h
@@ -33,18 +33,19 @@ class InProcessNativeRunner : public NativeRunner,
void Start(
const base::FilePath& app_path,
bool start_sandboxed,
- InterfaceRequest<Application> application_request,
+ InterfaceRequest<mojom::Application> application_request,
const base::Callback<void(base::ProcessId)>& pid_available_callback,
const base::Closure& app_completed_callback) override;
- void InitHost(ScopedHandle channel,
- InterfaceRequest<Application> application_request) override;
+ void InitHost(
+ ScopedHandle channel,
+ InterfaceRequest<mojom::Application> application_request) override;
private:
// |base::DelegateSimpleThread::Delegate| method:
void Run() override;
base::FilePath app_path_;
- InterfaceRequest<Application> application_request_;
+ InterfaceRequest<mojom::Application> application_request_;
base::Callback<bool(void)> app_completed_callback_runner_;
base::ScopedNativeLibrary app_library_;
« no previous file with comments | « mojo/shell/runner/host/child_process_host.cc ('k') | mojo/shell/runner/host/in_process_native_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698