1 /*
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 
17 package android.webkit;
18 
19 import android.content.pm.PackageInfo;
20 import android.os.Parcel;
21 import android.os.Parcelable;
22 
23 /** @hide */
24 public final class WebViewProviderResponse implements Parcelable {
25 
WebViewProviderResponse(PackageInfo packageInfo, int status)26     public WebViewProviderResponse(PackageInfo packageInfo, int status) {
27         this.packageInfo = packageInfo;
28         this.status = status;
29     }
30 
31     // aidl stuff
32     public static final Parcelable.Creator<WebViewProviderResponse> CREATOR =
33         new Parcelable.Creator<WebViewProviderResponse>() {
34             public WebViewProviderResponse createFromParcel(Parcel in) {
35                 return new WebViewProviderResponse(in);
36             }
37 
38             public WebViewProviderResponse[] newArray(int size) {
39                 return new WebViewProviderResponse[size];
40             }
41         };
42 
WebViewProviderResponse(Parcel in)43     private WebViewProviderResponse(Parcel in) {
44         packageInfo = in.readTypedObject(PackageInfo.CREATOR);
45         status = in.readInt();
46     }
47 
48     @Override
describeContents()49     public int describeContents() {
50         return 0;
51     }
52 
53     @Override
writeToParcel(Parcel out, int flags)54     public void writeToParcel(Parcel out, int flags) {
55         out.writeTypedObject(packageInfo, flags);
56         out.writeInt(status);
57     }
58 
59     public final PackageInfo packageInfo;
60     public final int status;
61 }
62