Home | History | Annotate | Download | only in compat
      1 /*
      2  * Copyright (C) 2013 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 com.android.inputmethod.compat;
     18 
     19 import android.app.DownloadManager;
     20 
     21 import java.lang.reflect.Method;
     22 
     23 public final class DownloadManagerCompatUtils {
     24     // DownloadManager.Request#setAllowedOverMetered() has been introduced
     25     // in API level 16 (Build.VERSION_CODES.JELLY_BEAN).
     26     private static final Method METHOD_setAllowedOverMetered = CompatUtils.getMethod(
     27             DownloadManager.Request.class, "setAllowedOverMetered", Boolean.TYPE);
     28 
     29     public static DownloadManager.Request setAllowedOverMetered(
     30             final DownloadManager.Request request, final boolean allowOverMetered) {
     31         return (DownloadManager.Request)CompatUtils.invoke(request,
     32                 request /* default return value */, METHOD_setAllowedOverMetered, allowOverMetered);
     33     }
     34 
     35     public static final boolean hasSetAllowedOverMetered() {
     36         return null != METHOD_setAllowedOverMetered;
     37     }
     38 }
     39