Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |