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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package org.chromium.base;
6
7 import org.chromium.base.FileDescriptorInfo;
8 import org.chromium.base.MainReturnCodeResult;
9
10 /**
11 * This interface is used to control child processes.
12 */
13 interface ITestClient {
14 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
15 MainReturnCodeResult waitForMainToReturn(int timeoutMs);
16 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.
17 void forceStop(int exitCode);
18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698