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

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: Fixed tests 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);
+ MainReturnCodeResult waitForMainToReturn(int timeoutMs);
+ boolean forceStopSynchronous(int exitCode);
+ void forceStop(int exitCode);
+}

Powered by Google App Engine
This is Rietveld 408576698