Chromium Code Reviews| Index: chrome/android/java/src/org/chromium/chrome/browser/suggestions/PartialUpdateId.java |
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/suggestions/PartialUpdateId.java b/chrome/android/java/src/org/chromium/chrome/browser/suggestions/PartialUpdateId.java |
| deleted file mode 100644 |
| index cde816d5842025ee49a1ada12fd19e4244191000..0000000000000000000000000000000000000000 |
| --- a/chrome/android/java/src/org/chromium/chrome/browser/suggestions/PartialUpdateId.java |
| +++ /dev/null |
| @@ -1,22 +0,0 @@ |
| -// Copyright 2017 The Chromium Authors. All rights reserved. |
|
dgn
2017/01/31 18:21:35
conflicts incoming... there are 2 of these now, wi
Michael van Ouwerkerk
2017/02/03 12:37:48
Done.
|
| -// 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.suggestions; |
| - |
| -import android.support.annotation.IntDef; |
| - |
| -import java.lang.annotation.Retention; |
| -import java.lang.annotation.RetentionPolicy; |
| - |
| -/** |
| - * Payloads to be passed to mark the different types of partial binds that can be made on view |
| - * holders |
| - * @see org.chromium.chrome.browser.ntp.cards.InnerNode#notifyItemChanged(int, Object) |
| - */ |
| -@IntDef({PartialUpdateId.OFFLINE_BADGE}) |
| -@Retention(RetentionPolicy.SOURCE) |
| -public @interface PartialUpdateId { |
| - /** Marks a request to update a suggestion's offline badge */ |
| - int OFFLINE_BADGE = 1; |
| -} |