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

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/core/dom/
ActiveDOMObject.cpp 28 #include "core/dom/ActiveDOMObject.h"
34 ActiveDOMObject::ActiveDOMObject(ScriptExecutionContext* scriptExecutionContext)
44 ActiveDOMObject::~ActiveDOMObject()
46 // ActiveDOMObject may be inherited by a sub-class whose life-cycle
59 void ActiveDOMObject::suspendIfNeeded()
69 bool ActiveDOMObject::hasPendingActivity() const
74 bool ActiveDOMObject::canSuspend() const
79 void ActiveDOMObject::suspend(ReasonForSuspension
    [all...]
ContextLifecycleNotifier.h 30 #include "core/dom/ActiveDOMObject.h"
37 class ActiveDOMObject;
47 typedef HashSet<ActiveDOMObject*> ActiveDOMObjectSet;
55 void notifySuspendingActiveDOMObjects(ActiveDOMObject::ReasonForSuspension);
58 bool contains(ActiveDOMObject* object) const { return m_activeDOMObjects.contains(object); }
ActiveDOMObject.h 36 class ActiveDOMObject : public ContextLifecycleObserver {
38 ActiveDOMObject(ScriptExecutionContext*);
80 virtual ~ActiveDOMObject();
ScriptExecutionContext.h 31 #include "core/dom/ActiveDOMObject.h"
91 virtual void suspendActiveDOMObjects(ActiveDOMObject::ReasonForSuspension);
98 // Called after the construction of an ActiveDOMObject to synchronize suspend state.
99 void suspendActiveDOMObjectIfNeeded(ActiveDOMObject*);
101 // MessagePort is conceptually a kind of ActiveDOMObject, but it needs to be tracked separately for message dispatch.
188 ActiveDOMObject::ReasonForSuspension m_reasonForSuspendingActiveDOMObjects;
ContextLifecycleNotifier.cpp 52 m_activeDOMObjects.add(static_cast<ActiveDOMObject*>(observer));
63 m_activeDOMObjects.remove(static_cast<ActiveDOMObject*>(observer));
78 void ContextLifecycleNotifier::notifySuspendingActiveDOMObjects(ActiveDOMObject::ReasonForSuspension why)
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMarqueeElement.h 26 #include "core/dom/ActiveDOMObject.h"
34 class HTMLMarqueeElement FINAL : public HTMLElement, private ActiveDOMObject {
60 // ActiveDOMObject
PublicURLManager.h 29 #include "core/dom/ActiveDOMObject.h"
43 class PublicURLManager : public ActiveDOMObject {
51 // ActiveDOMObject interface.
  /external/chromium_org/third_party/WebKit/Source/core/page/
SuspendableTimer.h 30 #include "core/dom/ActiveDOMObject.h"
35 class SuspendableTimer : public TimerBase, public ActiveDOMObject {
40 // ActiveDOMObject
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCSessionDescriptionRequestImpl.h 34 #include "core/dom/ActiveDOMObject.h"
47 class RTCSessionDescriptionRequestImpl : public RTCSessionDescriptionRequest, public ActiveDOMObject {
55 // ActiveDOMObject
RTCStatsRequestImpl.h 28 #include "core/dom/ActiveDOMObject.h"
40 class RTCStatsRequestImpl : public RTCStatsRequest, public ActiveDOMObject {
52 // ActiveDOMObject
RTCVoidRequestImpl.h 34 #include "core/dom/ActiveDOMObject.h"
42 class RTCVoidRequestImpl : public RTCVoidRequest, public ActiveDOMObject {
50 // ActiveDOMObject
MediaStreamTrack.h 30 #include "core/dom/ActiveDOMObject.h"
46 class MediaStreamTrack : public RefCounted<MediaStreamTrack>, public ScriptWrappable, public ActiveDOMObject, public EventTarget, public MediaStreamSource::Observer {
75 // ActiveDOMObject
RTCDTMFSender.h 30 #include "core/dom/ActiveDOMObject.h"
43 class RTCDTMFSender : public RefCounted<RTCDTMFSender>, public ScriptWrappable, public EventTarget, public RTCDTMFSenderHandlerClient, public ActiveDOMObject {
64 // ActiveDOMObject
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIPort.h 35 #include "core/dom/ActiveDOMObject.h"
43 class MIDIPort : public RefCounted<MIDIPort>, public ScriptWrappable, public ActiveDOMObject, public EventTarget {
66 virtual ScriptExecutionContext* scriptExecutionContext() const OVERRIDE { return ActiveDOMObject::scriptExecutionContext(); }
68 // ActiveDOMObject
MIDIAccessPromise.h 35 #include "core/dom/ActiveDOMObject.h"
51 class MIDIAccessPromise : public RefCounted<MIDIAccessPromise>, public ScriptWrappable, public ActiveDOMObject {
58 // ActiveDOMObject
MIDIAccess.h 35 #include "core/dom/ActiveDOMObject.h"
50 class MIDIAccess : public RefCounted<MIDIAccess>, public ScriptWrappable, public ActiveDOMObject, public EventTarget, public MIDIAccessorClient {
69 virtual ScriptExecutionContext* scriptExecutionContext() const OVERRIDE { return ActiveDOMObject::scriptExecutionContext(); }
71 // ActiveDOMObject
  /external/chromium_org/third_party/WebKit/Source/core/loader/
Prerenderer.h 35 #include "core/dom/ActiveDOMObject.h"
50 class Prerenderer : public ActiveDOMObject {
59 // From ActiveDOMObject:
  /external/chromium_org/third_party/WebKit/Source/core/workers/
AbstractWorker.h 35 #include "core/dom/ActiveDOMObject.h"
50 class AbstractWorker : public RefCounted<AbstractWorker>, public EventTarget, public ActiveDOMObject {
53 virtual ScriptExecutionContext* scriptExecutionContext() const OVERRIDE { return ActiveDOMObject::scriptExecutionContext(); }
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseContext.h 31 #include "core/dom/ActiveDOMObject.h"
44 class DatabaseContext : public ThreadSafeRefCounted<DatabaseContext>, public ActiveDOMObject {
48 // For life-cycle management (inherited from ActiveDOMObject):
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReader.h 35 #include "core/dom/ActiveDOMObject.h"
50 class FileReader : public RefCounted<FileReader>, public ScriptWrappable, public ActiveDOMObject, public EventTarget, public FileReaderLoaderClient {
77 // ActiveDOMObject
83 virtual ScriptExecutionContext* scriptExecutionContext() const { return ActiveDOMObject::scriptExecutionContext(); }
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriter.h 35 #include "core/dom/ActiveDOMObject.h"
49 class FileWriter : public ScriptWrappable, public FileWriterBase, public ActiveDOMObject, public EventTarget, public AsyncFileWriterClient {
71 // ActiveDOMObject
77 virtual ScriptExecutionContext* scriptExecutionContext() const { return ActiveDOMObject::scriptExecutionContext(); }
DOMFileSystem.h 35 #include "core/dom/ActiveDOMObject.h"
48 class DOMFileSystem : public DOMFileSystemBase, public ScriptWrappable, public ActiveDOMObject {
57 // ActiveDOMObject methods.
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
MediaSourceBase.h 34 #include "core/dom/ActiveDOMObject.h"
48 class MediaSourceBase : public RefCounted<MediaSourceBase>, public HTMLMediaSource, public ActiveDOMObject, public EventTarget {
77 // ActiveDOMObject interface
SourceBuffer.h 35 #include "core/dom/ActiveDOMObject.h"
50 class SourceBuffer : public RefCounted<SourceBuffer>, public ActiveDOMObject, public EventTarget, public ScriptWrappable {
73 // ActiveDOMObject interface
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechRecognition.h 30 #include "core/dom/ActiveDOMObject.h"
47 class SpeechRecognition : public RefCounted<SpeechRecognition>, public ScriptWrappable, public ActiveDOMObject, public EventTarget {
86 // ActiveDOMObject.

Completed in 682 milliseconds

1 2 3 4 5 6