HomeSort by relevance Sort by last modified time
    Searched full:networkstatenotifier (Results 1 - 25 of 32) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/network/
NetworkStateNotifier.cpp 27 #include "NetworkStateNotifier.h"
35 NetworkStateNotifier& networkStateNotifier()
37 AtomicallyInitializedStatic(NetworkStateNotifier*, networkStateNotifier = new NetworkStateNotifier);
39 return *networkStateNotifier;
42 void NetworkStateNotifier::setNetworkStateChangedFunction(void(*function)())
50 void NetworkStateNotifier::setOnLine(bool onLine)
63 void NetworkStateNotifier::networkTypeChange(Connection::ConnectionType type
    [all...]
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...]
  /external/chromium/chrome/browser/chromeos/
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);
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_browsertest.cc 39 NetworkStateNotifier::GetInstance();
72 NetworkStateNotifier* notifier = NetworkStateNotifier::GetInstance();
90 NetworkStateNotifier* notifier = NetworkStateNotifier::GetInstance();
108 NetworkStateNotifier* notifier = NetworkStateNotifier::GetInstance();
boot_times_loader.cc 379 if (NetworkStateNotifier::GetInstance()->is_connected()) {
  /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)
NetworkStateNotifierPrivate.h 31 class NetworkStateNotifier;
36 NetworkStateNotifierPrivate(NetworkStateNotifier* notifier);
46 NetworkStateNotifier* m_notifier;
  /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/page/
Connection.cpp 30 #include "NetworkStateNotifier.h"
36 return networkStateNotifier().type();
NavigatorBase.cpp 30 #include "NetworkStateNotifier.h"
126 return networkStateNotifier().onLine();
Page.cpp 54 #include "NetworkStateNotifier.h"
118 AtomicString eventName = networkStateNotifier().onLine() ? eventNames().onlineEvent : eventNames().offlineEvent;
185 networkStateNotifier().setNetworkStateChangedFunction(networkStateChanged);
  /external/webkit/Source/WebKit/chromium/src/
WebNetworkStateNotifier.cpp 34 #include "NetworkStateNotifier.h"
42 networkStateNotifier().setOnLine(onLine);
  /external/webkit/Source/WebCore/inspector/
InspectorApplicationCacheAgent.cpp 39 #include "NetworkStateNotifier.h"
72 bool isNowOnline = networkStateNotifier().onLine();
  /external/chromium/chrome/browser/chromeos/offline/
offline_load_page.cc 52 if (NetworkStateNotifier::is_connected()) {
83 NetworkStateNotifier::GetOfflineDuration().InMilliseconds());
  /external/chromium/chrome/browser/renderer_host/
offline_resource_handler.cc 172 !chromeos::NetworkStateNotifier::is_connected() &&
  /external/webkit/Source/WebCore/plugins/android/
PluginViewAndroid.cpp 48 #include "NetworkStateNotifier.h"
410 *retValue = !networkStateNotifier().onLine();
549 *retValue = !networkStateNotifier().onLine();
  /external/webkit/Source/WebKit/android/jni/
JavaBridge.cpp 37 #include "NetworkStateNotifier.h"
383 WebCore::networkStateNotifier().networkStateChange(online);
406 WebCore::networkStateNotifier().networkTypeChange(connectionType);
  /external/chromium/chrome/browser/ui/
browser_init.cc 528 // NetworkStateNotifier has to be initialized before Launching browser
530 // and IO thread may access the NetworkStateNotifier.
533 chromeos::NetworkStateNotifier::GetInstance());
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebsettings.cpp 56 #include "NetworkStateNotifier.h"
61 WebCore::networkStateNotifier().setNetworkAccessAllowed(isAllowed);
    [all...]
  /external/chromium/chrome/browser/sessions/
session_restore.cc 181 if (chromeos::NetworkStateNotifier::is_connected()) {
  /external/webkit/Source/WebCore/
Android.mk 773 platform/network/NetworkStateNotifier.cpp \
    [all...]
WebCore.pro     [all...]
CMakeLists.txt     [all...]

Completed in 2323 milliseconds

1 2