Index: components/cronet/android/java/src/org/chromium/net/NetworkQualityRttListener.java |
diff --git a/components/cronet/android/java/src/org/chromium/net/NetworkQualityRttListener.java b/components/cronet/android/java/src/org/chromium/net/NetworkQualityRttListener.java |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2ada8ea00daff421b4f973a3898e63df3e26486a |
--- /dev/null |
+++ b/components/cronet/android/java/src/org/chromium/net/NetworkQualityRttListener.java |
@@ -0,0 +1,21 @@ |
+// Copyright 2015 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.net; |
+ |
+/** |
+ * Interface to watch for observations of various round trip times (RTTs) at |
+ * 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. |
+ */ |
+public interface NetworkQualityRttListener { |
+ /** |
+ * Reports a new round trip time observation. |
+ * @param rttMs the round trip time in milliseconds. |
+ * @param whenMs the time since the epoch in milliseconds. |
+ * @param source the observation source from {@link NetworkQualityObservationSource}. |
+ */ |
+ public void onRttObservation(int rttMs, long whenMs, int source); |
+} |