| Index: chrome/android/java/src/org/chromium/chrome/browser/physicalweb/ClearNotificationAlarmReceiver.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/physicalweb/ClearNotificationAlarmReceiver.java b/chrome/android/java/src/org/chromium/chrome/browser/physicalweb/ClearNotificationAlarmReceiver.java
|
| deleted file mode 100644
|
| index 52a763709009036b68a6138effdc1ebd4ed83654..0000000000000000000000000000000000000000
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/physicalweb/ClearNotificationAlarmReceiver.java
|
| +++ /dev/null
|
| @@ -1,26 +0,0 @@
|
| -// Copyright 2016 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -package org.chromium.chrome.browser.physicalweb;
|
| -
|
| -import android.content.BroadcastReceiver;
|
| -import android.content.Context;
|
| -import android.content.Intent;
|
| -
|
| -import org.chromium.base.Log;
|
| -
|
| -/**
|
| - * A broadcast receiver that clears the UrlManager's notification.
|
| - * This class cannot make native calls because it may not be loaded when the
|
| - * alarm fires.
|
| - */
|
| -public class ClearNotificationAlarmReceiver extends BroadcastReceiver {
|
| - private static final String TAG = "PhysicalWeb";
|
| -
|
| - @Override
|
| - public void onReceive(Context context, Intent intent) {
|
| - Log.d(TAG, "Running NotificationCleanupAlarmReceiver");
|
| - UrlManager.getInstance().clearNotification();
|
| - }
|
| -}
|
|
|