1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
android_webview / browser / network_service / aw_network_change_notifier_factory.h [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ANDROID_WEBVIEW_BROWSER_NETWORK_SERVICE_AW_NETWORK_CHANGE_NOTIFIER_FACTORY_H_
#define ANDROID_WEBVIEW_BROWSER_NETWORK_SERVICE_AW_NETWORK_CHANGE_NOTIFIER_FACTORY_H_
#include <memory>
#include "net/android/network_change_notifier_delegate_android.h"
#include "net/base/network_change_notifier_factory.h"
namespace net {
class NetworkChangeNotifier;
}
namespace android_webview {
// AwNetworkChangeNotifierFactory creates WebView-specific specialization of
// NetworkChangeNotifier. See aw_network_change_notifier.h for more details.
class AwNetworkChangeNotifierFactory :
public net::NetworkChangeNotifierFactory {
public:
// Must be called on the JNI thread.
AwNetworkChangeNotifierFactory();
AwNetworkChangeNotifierFactory(const AwNetworkChangeNotifierFactory&) =
delete;
AwNetworkChangeNotifierFactory& operator=(
const AwNetworkChangeNotifierFactory&) = delete;
// Must be called on the JNI thread.
~AwNetworkChangeNotifierFactory() override;
// NetworkChangeNotifierFactory:
std::unique_ptr<net::NetworkChangeNotifier> CreateInstanceWithInitialTypes(
net::NetworkChangeNotifier::ConnectionType /*initial_type*/,
net::NetworkChangeNotifier::ConnectionSubtype /*initial_subtype*/)
override;
private:
// Delegate passed to the instances created by this class.
net::NetworkChangeNotifierDelegateAndroid delegate_;
};
} // namespace android_webview
#endif // ANDROID_WEBVIEW_BROWSER_NETWORK_SERVICE_AW_NETWORK_CHANGE_NOTIFIER_FACTORY_H_