OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 package org.chromium.net; | |
6 | |
7 /** | |
8 * Class to watch for observations of bandwidth. | |
9 */ | |
10 public interface BandwidthObserver { | |
11 public void onBandwidthObservation(int value, int when, | |
mef
2015/08/11 17:16:26
need javadoc comment for public methods.
bengr
2015/08/25 23:43:34
Done.
| |
12 NetworkQualityObservationSource source); | |
13 } | |
OLD | NEW |