summaryrefslogtreecommitdiffstats
path: root/net/android/network_change_notifier_android.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/android/network_change_notifier_android.h')
-rw-r--r--net/android/network_change_notifier_android.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/net/android/network_change_notifier_android.h b/net/android/network_change_notifier_android.h
index 0d90a56..f6d43d0 100644
--- a/net/android/network_change_notifier_android.h
+++ b/net/android/network_change_notifier_android.h
@@ -42,17 +42,17 @@ class NET_EXPORT_PRIVATE NetworkChangeNotifierAndroid
: public NetworkChangeNotifier,
public NetworkChangeNotifierDelegateAndroid::Observer {
public:
- virtual ~NetworkChangeNotifierAndroid();
+ ~NetworkChangeNotifierAndroid() override;
// NetworkChangeNotifier:
- virtual ConnectionType GetCurrentConnectionType() const override;
+ ConnectionType GetCurrentConnectionType() const override;
// Requires ACCESS_WIFI_STATE permission in order to provide precise WiFi link
// speed.
- virtual double GetCurrentMaxBandwidth() const override;
+ double GetCurrentMaxBandwidth() const override;
// NetworkChangeNotifierDelegateAndroid::Observer:
- virtual void OnConnectionTypeChanged() override;
- virtual void OnMaxBandwidthChanged(double max_bandwidth_mbps) override;
+ void OnConnectionTypeChanged() override;
+ void OnMaxBandwidthChanged(double max_bandwidth_mbps) override;
static bool Register(JNIEnv* env);