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

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

Issue 2611323002: Relanding "Multiprocess test client: Android child process launcher rework." (Closed)
Patch Set: Addressed nyquist@'s comment + sync Created 3 years, 11 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: base/test/android/java/src/org/chromium/base/MainReturnCodeResult.java
diff --git a/base/test/android/java/src/org/chromium/base/MainReturnCodeResult.java b/base/test/android/java/src/org/chromium/base/MainReturnCodeResult.java
new file mode 100644
index 0000000000000000000000000000000000000000..05a15b58fd92aa33f55f5514ee85b39c9ec61333
--- /dev/null
+++ b/base/test/android/java/src/org/chromium/base/MainReturnCodeResult.java
@@ -0,0 +1,64 @@
+// 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 android.os.Parcel;
+import android.os.Parcelable;
+
+import org.chromium.base.annotations.CalledByNative;
+import org.chromium.base.annotations.JNINamespace;
+
+/**
+ * Contains the result of a native main method that ran in a child process.
+ */
+@JNINamespace("base::android")
+public final class MainReturnCodeResult implements Parcelable {
+ private final int mMainReturnCode;
+ private final boolean mTimedOut;
+
+ public MainReturnCodeResult(int mainReturnCode, boolean timedOut) {
+ mMainReturnCode = mainReturnCode;
+ mTimedOut = timedOut;
+ }
+
+ MainReturnCodeResult(Parcel in) {
+ mMainReturnCode = in.readInt();
+ mTimedOut = (in.readInt() != 0);
+ }
+
+ @CalledByNative
+ public int getReturnCode() {
+ return mMainReturnCode;
+ }
+
+ @CalledByNative
+ public boolean hasTimedOut() {
+ return mTimedOut;
+ }
+
+ @Override
+ public int describeContents() {
+ return 0;
+ }
+
+ @Override
+ public void writeToParcel(Parcel dest, int flags) {
+ dest.writeInt(mMainReturnCode);
+ dest.writeInt(mTimedOut ? 1 : 0);
+ }
+
+ public static final Parcelable.Creator<MainReturnCodeResult> CREATOR =
+ new Parcelable.Creator<MainReturnCodeResult>() {
+ @Override
+ public MainReturnCodeResult createFromParcel(Parcel in) {
+ return new MainReturnCodeResult(in);
+ }
+
+ @Override
+ public MainReturnCodeResult[] newArray(int size) {
+ return new MainReturnCodeResult[size];
+ }
+ };
+}

Powered by Google App Engine
This is Rietveld 408576698