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

12

/external/webkit/Source/WebCore/workers/
H A DWorkerObjectProxy.h49 virtual void confirmMessageFromWorkerObject(bool hasPendingActivity) = 0;
50 virtual void reportPendingActivity(bool hasPendingActivity) = 0;
H A DWorkerMessagingProxy.h59 virtual bool hasPendingActivity() const;
67 virtual void confirmMessageFromWorkerObject(bool hasPendingActivity);
68 virtual void reportPendingActivity(bool hasPendingActivity);
92 void reportPendingActivityInternal(bool confirmingMessage, bool hasPendingActivity);
H A DWorkerMessagingProxy.cpp68 context->thread()->workerObjectProxy().confirmMessageFromWorkerObject(context->hasPendingActivity());
187 static PassOwnPtr<WorkerThreadActivityReportTask> create(WorkerMessagingProxy* messagingProxy, bool confirmingMessage, bool hasPendingActivity) argument
189 return new WorkerThreadActivityReportTask(messagingProxy, confirmingMessage, hasPendingActivity);
193 WorkerThreadActivityReportTask(WorkerMessagingProxy* messagingProxy, bool confirmingMessage, bool hasPendingActivity) argument
196 , m_hasPendingActivity(hasPendingActivity)
354 void WorkerMessagingProxy::confirmMessageFromWorkerObject(bool hasPendingActivity) argument
356 m_scriptExecutionContext->postTask(WorkerThreadActivityReportTask::create(this, true, hasPendingActivity));
360 void WorkerMessagingProxy::reportPendingActivity(bool hasPendingActivity) argument
362 m_scriptExecutionContext->postTask(WorkerThreadActivityReportTask::create(this, false, hasPendingActivity));
366 void WorkerMessagingProxy::reportPendingActivityInternal(bool confirmingMessage, bool hasPendingActivity) argument
376 bool WorkerMessagingProxy::hasPendingActivity() const function in class:WebCore::WorkerMessagingProxy
[all...]
H A DWorkerContextProxy.h58 virtual bool hasPendingActivity() const = 0;
H A DWorker.cpp124 bool Worker::hasPendingActivity() const function in class:WebCore::Worker
126 return m_contextProxy->hasPendingActivity() || ActiveDOMObject::hasPendingActivity();
H A DDedicatedWorkerThread.cpp65 m_workerObjectProxy.reportPendingActivity(workerContext()->hasPendingActivity());
H A DDedicatedWorkerContext.cpp75 thread()->workerObjectProxy().reportPendingActivity(hasPendingActivity());
H A DWorker.h70 virtual bool hasPendingActivity() const;
/external/webkit/Source/WebKit/chromium/public/
H A DWebWorkerClient.h52 virtual void confirmMessageFromWorkerObject(bool hasPendingActivity) = 0;
53 virtual void reportPendingActivity(bool hasPendingActivity) = 0;
/external/webkit/Source/WebCore/dom/
H A DActiveDOMObject.cpp54 bool ActiveDOMObject::hasPendingActivity() const function in class:WebCore::ActiveDOMObject
H A DActiveDOMObject.h41 virtual bool hasPendingActivity() const;
H A DMessagePortChannel.h80 bool hasPendingActivity();
H A DMessagePort.cpp191 bool MessagePort::hasPendingActivity() function in class:WebCore::MessagePort
195 return m_started && m_entangledChannel && m_entangledChannel->hasPendingActivity();
/external/webkit/Source/WebCore/page/
H A DSuspendableTimer.h41 virtual bool hasPendingActivity() const;
H A DSuspendableTimer.cpp49 bool SuspendableTimer::hasPendingActivity() const function in class:WebCore::SuspendableTimer
/external/webkit/Source/WebKit/chromium/src/
H A DPlatformMessagePortChannel.h63 bool hasPendingActivity();
H A DWebWorkerBase.cpp335 void WebWorkerBase::confirmMessageFromWorkerObject(bool hasPendingActivity) argument
338 hasPendingActivity));
343 bool hasPendingActivity)
347 thisPtr->client()->confirmMessageFromWorkerObject(hasPendingActivity);
350 void WebWorkerBase::reportPendingActivity(bool hasPendingActivity) argument
353 this, hasPendingActivity));
358 bool hasPendingActivity)
362 thisPtr->client()->reportPendingActivity(hasPendingActivity);
341 confirmMessageTask(ScriptExecutionContext* context, WebWorkerBase* thisPtr, bool hasPendingActivity) argument
356 reportPendingActivityTask(ScriptExecutionContext* context, WebWorkerBase* thisPtr, bool hasPendingActivity) argument
H A DWebWorkerClientImpl.cpp190 bool WebWorkerClientImpl::hasPendingActivity() const function in class:WebKit::WebWorkerClientImpl
291 void WebWorkerClientImpl::confirmMessageFromWorkerObject(bool hasPendingActivity) argument
300 void WebWorkerClientImpl::reportPendingActivity(bool hasPendingActivity) argument
305 hasPendingActivity));
411 bool hasPendingActivity)
413 thisPtr->m_workerContextHadPendingActivity = hasPendingActivity;
409 reportPendingActivityTask(ScriptExecutionContext* context, WebWorkerClientImpl* thisPtr, bool hasPendingActivity) argument
H A DWebWorkerClientImpl.h73 virtual bool hasPendingActivity() const;
147 bool hasPendingActivity);
/external/webkit/Source/WebCore/dom/default/
H A DPlatformMessagePortChannel.cpp91 bool MessagePortChannel::hasPendingActivity() function in class:WebCore::MessagePortChannel
93 return m_channel->hasPendingActivity();
225 bool PlatformMessagePortChannel::hasPendingActivity() function in class:WebCore::PlatformMessagePortChannel
H A DPlatformMessagePortChannel.h58 bool hasPendingActivity();
/external/webkit/Source/WebCore/fileapi/
H A DDOMFileSystem.cpp69 bool DOMFileSystem::hasPendingActivity() const function in class:WebCore::DOMFileSystem
71 return m_asyncFileSystem->hasPendingActivity();
H A DFileReader.cpp63 bool FileReader::hasPendingActivity() const function in class:WebCore::FileReader
65 return (m_state != None && m_state != Completed) || ActiveDOMObject::hasPendingActivity();
H A DFileWriter.cpp62 bool FileWriter::hasPendingActivity() const function in class:WebCore::FileWriter
64 return m_readyState == WRITING || ActiveDOMObject::hasPendingActivity();
/external/webkit/Source/WebCore/storage/
H A DIDBDatabase.cpp168 bool IDBDatabase::hasPendingActivity() const function in class:WebCore::IDBDatabase
175 return !m_stopped || ActiveDOMObject::hasPendingActivity();

Completed in 425 milliseconds

12