1 /*
2  * Copyright (C) 2021 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 import android.annotation.NonNull;
18 import android.annotation.Nullable;
19 import android.content.ComponentName;
20 import android.content.Intent;
21 import android.content.pm.PackageManager;
22 
23 public class IntentCompat {
24     private final Intent mIntent;
25 
26     public static final String EXTRA_USER_ID = Intent.EXTRA_USER_ID;
27 
28     public static final String EXTRA_USER_HANDLE = Intent.EXTRA_USER_HANDLE;
29 
30     public static final String ACTION_QUERY_PACKAGE_RESTART = Intent.ACTION_QUERY_PACKAGE_RESTART;
31 
32     public static final String EXTRA_INSTALL_RESULT = Intent.EXTRA_INSTALL_RESULT;
33 
34     public static final String EXTRA_PACKAGES = Intent.EXTRA_PACKAGES;
35 
36     public static final String EXTRA_UNINSTALL_ALL_USERS = Intent.EXTRA_UNINSTALL_ALL_USERS;
37 
38     public static final int EXTRA_TIME_PREF_VALUE_USE_12_HOUR =
39             Intent.EXTRA_TIME_PREF_VALUE_USE_12_HOUR;
40 
41     public static final int EXTRA_TIME_PREF_VALUE_USE_24_HOUR =
42             Intent.EXTRA_TIME_PREF_VALUE_USE_24_HOUR;
43 
44     public static final String EXTRA_TIME_PREF_24_HOUR_FORMAT =
45             Intent.EXTRA_TIME_PREF_24_HOUR_FORMAT;
46 
IntentCompat(Intent intent)47     public IntentCompat(Intent intent) {
48         mIntent = intent;
49     }
50 
51     public @Nullable
resolveSystemService(@onNull PackageManager pm, int flags)52     ComponentName resolveSystemService(@NonNull PackageManager pm, int flags) {
53         return mIntent.resolveSystemService(pm, flags);
54     }
55 }
56