Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Unified Diff: components/cronet/android/api/src/org/chromium/net/NetworkQualityRttListener.java

Issue 1557233003: Download doclava when building for Android and use to build cronet Javadocs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert back to Patch Set 10 Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/cronet/android/api/src/org/chromium/net/NetworkQualityRttListener.java
diff --git a/components/cronet/android/api/src/org/chromium/net/NetworkQualityRttListener.java b/components/cronet/android/api/src/org/chromium/net/NetworkQualityRttListener.java
index b1fe24d8167c0c4ada3f968059868230bafb3197..cd04f6ebfcca635cbaba2f0d9888c2aae6c7d383 100644
--- a/components/cronet/android/api/src/org/chromium/net/NetworkQualityRttListener.java
+++ b/components/cronet/android/api/src/org/chromium/net/NetworkQualityRttListener.java
@@ -9,9 +9,8 @@ package org.chromium.net;
* various layers of the network stack. These include RTT estimates by QUIC
* and TCP, as well as the time between when a URL request is sent and when
* the first byte of the response is received.
- * @deprecated not really deprecated but hidden for now as it's a prototype.
+ * {@hide} as it's a prototype.
*/
-@SuppressWarnings("DepAnn")
public interface NetworkQualityRttListener {
/**
* Reports a new round trip time observation.
@@ -20,4 +19,4 @@ public interface NetworkQualityRttListener {
* @param source the observation source from {@link NetworkQualityObservationSource}.
*/
public void onRttObservation(int rttMs, long whenMs, int source);
-}
+}

Powered by Google App Engine
This is Rietveld 408576698