Searched defs:NetworkChangeNotifier (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/net/base/
H A Dnetwork_change_notifier.cc39 NetworkChangeNotifier* g_network_change_notifier = NULL;
44 class MockNetworkChangeNotifier : public NetworkChangeNotifier {
55 : public NetworkChangeNotifier::ConnectionTypeObserver,
56 public NetworkChangeNotifier::IPAddressObserver,
57 public NetworkChangeNotifier::DNSObserver,
58 public NetworkChangeNotifier::NetworkChangeObserver {
65 last_connection_type_(NetworkChangeNotifier::CONNECTION_UNKNOWN),
78 NetworkChangeNotifier::AddConnectionTypeObserver(this);
79 NetworkChangeNotifier::AddIPAddressObserver(this);
80 NetworkChangeNotifier
739 NetworkChangeNotifier::NetworkChangeNotifier( function in class:net::NetworkChangeNotifier
[all...]
H A Dnetwork_change_notifier.h28 // NetworkChangeNotifier monitors the system for network changes, and notifies
33 class NET_EXPORT NetworkChangeNotifier { class in namespace:net
67 // See NetworkChangeNotifier::GetConnectionType() for important caveats
131 virtual ~NetworkChangeNotifier();
133 // See the description of NetworkChangeNotifier::GetConnectionType().
138 // Replaces the default class factory instance of NetworkChangeNotifier class.
142 // Creates the process-wide, platform-specific NetworkChangeNotifier. The
148 static NetworkChangeNotifier* Create();
190 static NetworkChangeNotifier* CreateMock();
228 // Let the NetworkChangeNotifier kno
[all...]
/external/chromium_org/net/android/java/src/org/chromium/net/
H A DNetworkChangeNotifier.java27 public class NetworkChangeNotifier { class
52 private static NetworkChangeNotifier sInstance;
54 private NetworkChangeNotifier(Context context) { method in class:NetworkChangeNotifier
64 public static NetworkChangeNotifier init(Context context) {
66 sInstance = new NetworkChangeNotifier(context);
76 sInstance = new NetworkChangeNotifier(context);
103 public static NetworkChangeNotifier getInstance() {
113 * @param shouldAutoDetect true if the NetworkChangeNotifier should listen for system changes in
148 * @param networkAvailable True if the NetworkChangeNotifier should perceive a "connected"

Completed in 4341 milliseconds