Searched refs:hasPendingActivity (Results 1 - 25 of 76) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerObjectProxy.h59 void confirmMessageFromWorkerObject(bool hasPendingActivity);
60 void reportPendingActivity(bool hasPendingActivity);
H A DWorkerGlobalScopeProxy.h55 virtual bool hasPendingActivity() const = 0;
H A DWorkerObjectProxy.cpp60 void WorkerObjectProxy::confirmMessageFromWorkerObject(bool hasPendingActivity) argument
62 m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::confirmMessageFromWorkerObject, m_messagingProxy, hasPendingActivity));
65 void WorkerObjectProxy::reportPendingActivity(bool hasPendingActivity) argument
67 m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::reportPendingActivity, m_messagingProxy, hasPendingActivity));
H A DWorkerMessagingProxy.h59 virtual bool hasPendingActivity() const OVERRIDE;
69 void confirmMessageFromWorkerObject(bool hasPendingActivity);
70 void reportPendingActivity(bool hasPendingActivity);
H A DDedicatedWorkerThread.cpp66 m_workerObjectProxy.reportPendingActivity(workerGlobalScope()->hasPendingActivity());
H A DSharedWorker.h56 virtual bool hasPendingActivity() const OVERRIDE;
H A DWorker.h62 virtual bool hasPendingActivity() const OVERRIDE;
H A DWorkerMessagingProxy.cpp79 context->thread()->workerObjectProxy().confirmMessageFromWorkerObject(context->hasPendingActivity());
264 void WorkerMessagingProxy::confirmMessageFromWorkerObject(bool hasPendingActivity) argument
270 reportPendingActivity(hasPendingActivity);
273 void WorkerMessagingProxy::reportPendingActivity(bool hasPendingActivity) argument
275 m_workerThreadHadPendingActivity = hasPendingActivity;
278 bool WorkerMessagingProxy::hasPendingActivity() const function in class:blink::WorkerMessagingProxy
H A DWorker.cpp113 bool Worker::hasPendingActivity() const function in class:blink::Worker
116 return (m_contextProxy && m_contextProxy->hasPendingActivity()) || m_scriptLoader;
H A DSharedWorker.cpp99 bool SharedWorker::hasPendingActivity() const function in class:blink::SharedWorker
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DActiveDOMObject.h48 virtual bool hasPendingActivity() const;
H A DActiveDOMObject.cpp68 bool ActiveDOMObject::hasPendingActivity() const function in class:blink::ActiveDOMObject
H A DContextLifecycleNotifier.h58 bool hasPendingActivity() const;
H A DContextLifecycleNotifier.cpp118 bool ContextLifecycleNotifier::hasPendingActivity() const function in class:blink::ContextLifecycleNotifier
121 if ((*iter)->hasPendingActivity())
H A DMessagePort.h91 virtual bool hasPendingActivity() const OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DSuspendableTimer.h41 virtual bool hasPendingActivity() const OVERRIDE FINAL;
H A DSuspendableTimer.cpp47 bool SuspendableTimer::hasPendingActivity() const function in class:blink::SuspendableTimer
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaQueryList.h71 virtual bool hasPendingActivity() const OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/modules/battery/
H A DBatteryManager.h55 virtual bool hasPendingActivity() const OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/modules/netinfo/
H A DNetworkInformation.h41 virtual bool hasPendingActivity() const OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DBody.h50 virtual bool hasPendingActivity() const OVERRIDE;
H A DServiceWorker.h90 virtual bool hasPendingActivity() const OVERRIDE;
H A DServiceWorkerRegistration.h67 virtual bool hasPendingActivity() const OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLImageElement.h81 bool hasPendingActivity() const { return imageLoader().hasPendingActivity(); } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechRecognition.cpp159 if (hasPendingActivity())
163 bool SpeechRecognition::hasPendingActivity() const function in class:blink::SpeechRecognition

Completed in 413 milliseconds

1234