HomeSort by relevance Sort by last modified time
    Searched defs:NetworkStateNotifier (Results 1 - 6 of 6) sorted by null

  /external/chromium/chrome/browser/chromeos/
network_state_notifier.cc 20 NetworkStateNotifier* NetworkStateNotifier::GetInstance() {
21 return Singleton<NetworkStateNotifier>::get();
25 TimeDelta NetworkStateNotifier::GetOfflineDuration() {
33 NetworkStateNotifier::NetworkStateNotifier()
41 NetworkStateNotifier::~NetworkStateNotifier() {
49 void NetworkStateNotifier::OnNetworkManagerChanged(NetworkLibrary* cros) {
56 &NetworkStateNotifier::UpdateNetworkState
    [all...]
network_state_notifier.h 33 friend class NetworkStateNotifier;
44 // NetworkStateNotifier sends notification when network state has
48 class NetworkStateNotifier : public NetworkLibrary::NetworkManagerObserver {
51 static NetworkStateNotifier* GetInstance();
66 friend struct DefaultSingletonTraits<NetworkStateNotifier>;
71 NetworkStateNotifier();
72 virtual ~NetworkStateNotifier();
79 ScopedRunnableMethodFactory<NetworkStateNotifier> task_factory_;
87 DISALLOW_COPY_AND_ASSIGN(NetworkStateNotifier);
  /external/webkit/Source/WebCore/platform/network/qt/
NetworkStateNotifierQt.cpp 21 #include "NetworkStateNotifier.h"
30 NetworkStateNotifierPrivate::NetworkStateNotifierPrivate(NetworkStateNotifier* notifier)
65 void NetworkStateNotifier::updateState()
75 NetworkStateNotifier::NetworkStateNotifier()
83 void NetworkStateNotifier::setNetworkAccessAllowed(bool isAllowed)
  /external/webkit/Source/WebCore/platform/network/mac/
NetworkStateNotifierMac.cpp 27 #include "NetworkStateNotifier.h"
40 void NetworkStateNotifier::updateState()
79 void NetworkStateNotifier::dynamicStoreCallback(SCDynamicStoreRef, CFArrayRef, void* info)
81 NetworkStateNotifier* notifier = static_cast<NetworkStateNotifier*>(info);
88 void NetworkStateNotifier::networkStateChangeTimerFired(Timer<NetworkStateNotifier>*)
101 NetworkStateNotifier::NetworkStateNotifier()
104 , m_networkStateChangeTimer(this, &NetworkStateNotifier::networkStateChangeTimerFired
    [all...]
  /external/webkit/Source/WebCore/platform/network/win/
NetworkStateNotifierWin.cpp 27 #include "NetworkStateNotifier.h"
37 void NetworkStateNotifier::updateState()
71 void NetworkStateNotifier::addressChanged()
84 void NetworkStateNotifier::callAddressChanged(void* context)
86 static_cast<NetworkStateNotifier*>(context)->addressChanged();
89 void CALLBACK NetworkStateNotifier::addrChangeCallback(void* context, BOOLEAN timedOut)
93 static_cast<NetworkStateNotifier*>(context)->registerForAddressChange();
98 void NetworkStateNotifier::registerForAddressChange()
104 NetworkStateNotifier::NetworkStateNotifier()
    [all...]
  /external/webkit/Source/WebCore/platform/network/
NetworkStateNotifier.h 65 class NetworkStateNotifier {
66 WTF_MAKE_NONCOPYABLE(NetworkStateNotifier); WTF_MAKE_FAST_ALLOCATED;
68 NetworkStateNotifier();
98 void networkStateChangeTimerFired(Timer<NetworkStateNotifier>*);
103 Timer<NetworkStateNotifier> m_networkStateChangeTimer;
122 inline NetworkStateNotifier::NetworkStateNotifier()
132 inline void NetworkStateNotifier::updateState() { }
136 NetworkStateNotifier& networkStateNotifier();
    [all...]

Completed in 192 milliseconds