| Index: components/cronet/android/api/src/org/chromium/net/NetworkQualityThroughputListener.java
|
| diff --git a/components/cronet/android/api/src/org/chromium/net/NetworkQualityThroughputListener.java b/components/cronet/android/api/src/org/chromium/net/NetworkQualityThroughputListener.java
|
| index 196dbeccb2d7389599b04852c6d49cc54202924f..0930eb6765d63383c42ce9667eb463540d7d29c0 100644
|
| --- a/components/cronet/android/api/src/org/chromium/net/NetworkQualityThroughputListener.java
|
| +++ b/components/cronet/android/api/src/org/chromium/net/NetworkQualityThroughputListener.java
|
| @@ -6,8 +6,9 @@
|
|
|
| /**
|
| * Interface to watch for observations of throughput.
|
| - * {@hide} as it's a prototype.
|
| + * @deprecated not really deprecated but hidden for now as it's a prototype.
|
| */
|
| +@SuppressWarnings("DepAnn")
|
| public interface NetworkQualityThroughputListener {
|
| /**
|
| * Reports a new throughput observation.
|
| @@ -16,4 +17,4 @@
|
| * @param source the observation source from {@link NetworkQualityObservationSource}.
|
| */
|
| public void onThroughputObservation(int throughputKbps, long whenMs, int source);
|
| -}
|
| +}
|
|
|