HomeSort by relevance Sort by last modified time
    Searched refs:hasPendingActivity (Results 1 - 25 of 30) sorted by null

1 2

  /external/webkit/WebKit/chromium/public/
WebWorkerClient.h 52 virtual void confirmMessageFromWorkerObject(bool hasPendingActivity) = 0;
53 virtual void reportPendingActivity(bool hasPendingActivity) = 0;
  /external/webkit/WebCore/workers/
WorkerObjectProxy.h 49 virtual void confirmMessageFromWorkerObject(bool hasPendingActivity) = 0;
50 virtual void reportPendingActivity(bool hasPendingActivity) = 0;
WorkerContextProxy.h 58 virtual bool hasPendingActivity() const = 0;
WorkerMessagingProxy.h 58 virtual bool hasPendingActivity() const;
66 virtual void confirmMessageFromWorkerObject(bool hasPendingActivity);
67 virtual void reportPendingActivity(bool hasPendingActivity);
91 void reportPendingActivityInternal(bool confirmingMessage, bool hasPendingActivity);
Worker.cpp 111 bool Worker::hasPendingActivity() const
113 return m_contextProxy->hasPendingActivity() || ActiveDOMObject::hasPendingActivity();
WorkerMessagingProxy.cpp 67 context->thread()->workerObjectProxy().confirmMessageFromWorkerObject(context->hasPendingActivity());
186 static PassOwnPtr<WorkerThreadActivityReportTask> create(WorkerMessagingProxy* messagingProxy, bool confirmingMessage, bool hasPendingActivity)
188 return new WorkerThreadActivityReportTask(messagingProxy, confirmingMessage, hasPendingActivity);
192 WorkerThreadActivityReportTask(WorkerMessagingProxy* messagingProxy, bool confirmingMessage, bool hasPendingActivity)
195 , m_hasPendingActivity(hasPendingActivity)
353 void WorkerMessagingProxy::confirmMessageFromWorkerObject(bool hasPendingActivity)
355 m_scriptExecutionContext->postTask(WorkerThreadActivityReportTask::create(this, true, hasPendingActivity));
359 void WorkerMessagingProxy::reportPendingActivity(bool hasPendingActivity)
361 m_scriptExecutionContext->postTask(WorkerThreadActivityReportTask::create(this, false, hasPendingActivity));
365 void WorkerMessagingProxy::reportPendingActivityInternal(bool confirmingMessage, bool hasPendingActivity)
    [all...]
DedicatedWorkerThread.cpp 65 m_workerObjectProxy.reportPendingActivity(workerContext()->hasPendingActivity());
Worker.h 70 virtual bool hasPendingActivity() const;
DedicatedWorkerContext.cpp 77 thread()->workerObjectProxy().reportPendingActivity(hasPendingActivity());
WorkerContext.cpp 135 bool WorkerContext::hasPendingActivity() const
140 if (iter->first->hasPendingActivity())
147 if ((*iter)->hasPendingActivity() || ((*iter)->isEntangled() && !(*iter)->locallyEntangledPort()))
  /external/webkit/WebCore/dom/
ActiveDOMObject.h 41 virtual bool hasPendingActivity() const;
ActiveDOMObject.cpp 60 bool ActiveDOMObject::hasPendingActivity() const
MessagePortChannel.h 79 bool hasPendingActivity();
MessagePort.cpp 182 bool MessagePort::hasPendingActivity()
186 return m_started && m_entangledChannel && m_entangledChannel->hasPendingActivity();
MessagePort.h 93 bool hasPendingActivity();
  /external/webkit/WebCore/page/
DOMTimer.h 48 virtual bool hasPendingActivity() const;
  /external/webkit/WebKit/chromium/src/
WebWorkerBase.cpp 233 void WebWorkerBase::confirmMessageFromWorkerObject(bool hasPendingActivity)
236 hasPendingActivity));
241 bool hasPendingActivity)
245 thisPtr->client()->confirmMessageFromWorkerObject(hasPendingActivity);
248 void WebWorkerBase::reportPendingActivity(bool hasPendingActivity)
251 this, hasPendingActivity));
256 bool hasPendingActivity)
260 thisPtr->client()->reportPendingActivity(hasPendingActivity);
PlatformMessagePortChannel.h 66 bool hasPendingActivity();
WebWorkerClientImpl.cpp 190 bool WebWorkerClientImpl::hasPendingActivity() const
284 void WebWorkerClientImpl::confirmMessageFromWorkerObject(bool hasPendingActivity)
293 void WebWorkerClientImpl::reportPendingActivity(bool hasPendingActivity)
298 hasPendingActivity));
409 bool hasPendingActivity)
411 thisPtr->m_workerContextHadPendingActivity = hasPendingActivity;
WebWorkerBase.h 125 bool hasPendingActivity);
129 bool hasPendingActivity);
WebWorkerClientImpl.h 74 virtual bool hasPendingActivity() const;
139 bool hasPendingActivity);
WebWorkerImpl.cpp 94 thisPtr->confirmMessageFromWorkerObject(workerContext->hasPendingActivity());
PlatformMessagePortChannel.cpp 98 bool MessagePortChannel::hasPendingActivity()
100 return m_channel->hasPendingActivity();
236 bool PlatformMessagePortChannel::hasPendingActivity()
  /external/webkit/WebCore/dom/default/
PlatformMessagePortChannel.cpp 91 bool MessagePortChannel::hasPendingActivity()
93 return m_channel->hasPendingActivity();
225 bool PlatformMessagePortChannel::hasPendingActivity()
PlatformMessagePortChannel.h 58 bool hasPendingActivity();

Completed in 150 milliseconds

1 2