| Index: base/android/java/src/org/chromium/base/ApiCompatibilityUtils.java
|
| diff --git a/base/android/java/src/org/chromium/base/ApiCompatibilityUtils.java b/base/android/java/src/org/chromium/base/ApiCompatibilityUtils.java
|
| index 2af146b523c76d50bf07c09bf43c93335f9fd23b..8b2438c950e3f9af11ee0629252837c264563e8e 100644
|
| --- a/base/android/java/src/org/chromium/base/ApiCompatibilityUtils.java
|
| +++ b/base/android/java/src/org/chromium/base/ApiCompatibilityUtils.java
|
| @@ -7,7 +7,6 @@ package org.chromium.base;
|
| import android.animation.ValueAnimator;
|
| import android.annotation.TargetApi;
|
| import android.app.ActivityOptions;
|
| -import android.app.Notification;
|
| import android.app.PendingIntent;
|
| import android.content.Context;
|
| import android.content.Intent;
|
| @@ -27,9 +26,6 @@ import android.widget.TextView;
|
| * Utility class to use new APIs that were added after ICS (API level 14).
|
| */
|
| public class ApiCompatibilityUtils {
|
| -
|
| - private static final String TAG = "ApiCompatibilityUtils";
|
| -
|
| private ApiCompatibilityUtils() {
|
| }
|
|
|
| @@ -369,18 +365,6 @@ public class ApiCompatibilityUtils {
|
| }
|
|
|
| /**
|
| - * @see android.app.Notification.Builder#setLocalOnly(boolean)
|
| - */
|
| - @SuppressWarnings("deprecation")
|
| - public static Notification build(Notification.Builder builder) {
|
| - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
|
| - return builder.build();
|
| - } else {
|
| - return builder.getNotification();
|
| - }
|
| - }
|
| -
|
| - /**
|
| * @see android.provider.Settings.Global#DEVICE_PROVISIONED
|
| */
|
| @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
|
|
|