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

Unified Diff: base/test/android/java/src/org/chromium/base/ITestClient.aidl

Issue 2549363004: Multiprocess test client: Android child process launcher rework. (Closed)
Patch Set: Sublime ate my channel_pair change... Created 4 years 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: base/test/android/java/src/org/chromium/base/ITestClient.aidl
diff --git a/base/test/android/java/src/org/chromium/base/ITestClient.aidl b/base/test/android/java/src/org/chromium/base/ITestClient.aidl
new file mode 100644
index 0000000000000000000000000000000000000000..5132472c50c9788da030033ee190556f935b5be0
--- /dev/null
+++ b/base/test/android/java/src/org/chromium/base/ITestClient.aidl
@@ -0,0 +1,18 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package org.chromium.base;
+
+import org.chromium.base.FileDescriptorInfo;
+import org.chromium.base.MainReturnCodeResult;
+
+/**
+ * This interface is used to control child processes.
+ */
+interface ITestClient {
+ int launch(in String[] args, in FileDescriptorInfo[] fdsToMap);
nyquist 2016/12/13 20:40:30 Could you explain what the return value is here? I
Jay Civelli 2016/12/14 02:20:10 Sorry, I had forgotten to comment that file entire
+ MainReturnCodeResult waitForMainToReturn(int timeoutMs);
+ boolean forceStopSynchronous(int exitCode);
nyquist 2016/12/13 20:40:30 What does the return value signify here? It seems
Jay Civelli 2016/12/14 02:20:10 I explained in the comment.
+ void forceStop(int exitCode);
+}

Powered by Google App Engine
This is Rietveld 408576698