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

Unified Diff: content/public/common/process_control.mojom

Issue 1149833007: Embed a mojo ApplicationManager in content/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added some missing docs and removed some cruft Created 5 years, 7 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: content/public/common/process_control.mojom
diff --git a/content/public/common/process_control.mojom b/content/public/common/process_control.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..962a62508ed17b18bb3714be6aae31c880b80839
--- /dev/null
+++ b/content/public/common/process_control.mojom
@@ -0,0 +1,18 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
jam 2015/05/27 16:05:36 why is this in content/public?
Ken Rockot(use gerrit already) 2015/05/27 19:36:16 Same reason ShellContext was. My bad.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+module content;
+
+import "mojo/application/public/interfaces/application.mojom";
+
+enum LoadApplicationResult {
+ OK,
+ NOT_FOUND,
+};
+
+interface ProcessControl {
+ LoadApplication(string url, mojo.Application& request)
+ => (LoadApplicationResult result);
+};
+

Powered by Google App Engine
This is Rietveld 408576698