blob: 0edcb6fdefac9016e4917e7f9d884dee7fd468e7 [file] [log] [blame]
Gustav Sennton6258dcd2015-10-30 19:25:37 +00001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.webkit;
18
Mathew Inwood42afea22018-08-16 19:18:28 +010019import android.annotation.UnsupportedAppUsage;
Gustav Sennton6258dcd2015-10-30 19:25:37 +000020import android.content.pm.PackageInfo;
21import android.os.Parcel;
22import android.os.Parcelable;
23
24/** @hide */
Gustav Sennton79fea482016-04-07 14:22:56 +010025public final class WebViewProviderResponse implements Parcelable {
Gustav Sennton6258dcd2015-10-30 19:25:37 +000026
27 public WebViewProviderResponse(PackageInfo packageInfo, int status) {
28 this.packageInfo = packageInfo;
29 this.status = status;
30 }
31
32 // aidl stuff
33 public static final Parcelable.Creator<WebViewProviderResponse> CREATOR =
34 new Parcelable.Creator<WebViewProviderResponse>() {
35 public WebViewProviderResponse createFromParcel(Parcel in) {
36 return new WebViewProviderResponse(in);
37 }
38
39 public WebViewProviderResponse[] newArray(int size) {
40 return new WebViewProviderResponse[size];
41 }
42 };
43
44 private WebViewProviderResponse(Parcel in) {
45 packageInfo = in.readTypedObject(PackageInfo.CREATOR);
46 status = in.readInt();
47 }
48
49 @Override
50 public int describeContents() {
51 return 0;
52 }
53
54 @Override
55 public void writeToParcel(Parcel out, int flags) {
56 out.writeTypedObject(packageInfo, flags);
57 out.writeInt(status);
58 }
59
Mathew Inwood42afea22018-08-16 19:18:28 +010060 @UnsupportedAppUsage
Gustav Sennton79fea482016-04-07 14:22:56 +010061 public final PackageInfo packageInfo;
62 public final int status;
Gustav Sennton6258dcd2015-10-30 19:25:37 +000063}