HomeSort by relevance Sort by last modified time
    Searched full:activedomobject (Results 1 - 25 of 149) 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(ExecutionContext* executionContext)
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 void ActiveDOMObject::suspend()
78 void ActiveDOMObject::resume(
    [all...]
ActiveDOMObjectTest.cpp 42 class MockActiveDOMObject : public ActiveDOMObject {
44 MockActiveDOMObject(ExecutionContext* context) : ActiveDOMObject(context) { }
57 MockActiveDOMObject& activeDOMObject() { return m_activeDOMObject; }
78 EXPECT_CALL(activeDOMObject(), resume());
79 activeDOMObject().didMoveToNewExecutionContext(&destDocument());
87 EXPECT_CALL(activeDOMObject(), resume());
88 activeDOMObject().didMoveToNewExecutionContext(&destDocument());
95 EXPECT_CALL(activeDOMObject(), suspend());
96 activeDOMObject().didMoveToNewExecutionContext(&destDocument());
103 EXPECT_CALL(activeDOMObject(), stop())
    [all...]
ContextLifecycleNotifier.cpp 52 m_activeDOMObjects.add(static_cast<ActiveDOMObject*>(observer));
62 m_activeDOMObjects.remove(static_cast<ActiveDOMObject*>(observer));
69 Vector<ActiveDOMObject*> snapshotOfActiveDOMObjects;
71 for (Vector<ActiveDOMObject*>::iterator iter = snapshotOfActiveDOMObjects.begin(); iter != snapshotOfActiveDOMObjects.end(); iter++) {
72 // FIXME: Oilpan: At the moment, it's possible that the ActiveDOMObject is destructed
73 // during the iteration. Once we move ActiveDOMObject to the heap and
74 // make m_activeDOMObjects a HeapHashSet<WeakMember<ActiveDOMObject>>,
75 // it's no longer possible that ActiveDOMObject is destructed during the iteration,
89 Vector<ActiveDOMObject*> snapshotOfActiveDOMObjects;
91 for (Vector<ActiveDOMObject*>::iterator iter = snapshotOfActiveDOMObjects.begin(); iter != snapshotOfActiveDOMObjects.end(); i (…)
    [all...]
ContextLifecycleNotifier.h 30 #include "core/dom/ActiveDOMObject.h"
37 class ActiveDOMObject;
47 typedef HashSet<ActiveDOMObject*> ActiveDOMObjectSet;
58 bool contains(ActiveDOMObject* object) const { return m_activeDOMObjects.contains(object); }
ActiveDOMObject.h 35 class ActiveDOMObject : public ContextLifecycleObserver {
37 ActiveDOMObject(ExecutionContext*);
62 virtual ~ActiveDOMObject();
MessagePort.h 31 #include "core/dom/ActiveDOMObject.h"
60 , public ActiveDOMObject
90 virtual ExecutionContext* executionContext() const OVERRIDE { return ActiveDOMObject::executionContext(); }
93 // ActiveDOMObject implementation.
  /external/chromium_org/third_party/WebKit/Source/modules/netinfo/
NetworkInformation.h 9 #include "core/dom/ActiveDOMObject.h"
21 , public ActiveDOMObject
42 // ActiveDOMObject overrides.
59 // Whether ActiveDOMObject::stop has been called.
NetworkInformation.idl 18 ActiveDOMObject
  /external/chromium_org/third_party/WebKit/Source/core/frame/
SuspendableTimer.h 30 #include "core/dom/ActiveDOMObject.h"
35 class SuspendableTimer : public TimerBase, public ActiveDOMObject {
40 // ActiveDOMObject
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMarqueeElement.h 26 #include "core/dom/ActiveDOMObject.h"
35 class HTMLMarqueeElement FINAL : public HTMLElement, private ActiveDOMObject {
65 // ActiveDOMObject
PublicURLManager.h 29 #include "core/dom/ActiveDOMObject.h"
43 class PublicURLManager FINAL : public ActiveDOMObject {
52 // ActiveDOMObject interface.
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
MediaDevicesRequest.h 29 #include "core/dom/ActiveDOMObject.h"
44 class MediaDevicesRequest FINAL : public RefCountedWillBeRefCountedGarbageCollected<MediaDevicesRequest>, public ActiveDOMObject {
56 // ActiveDOMObject
RTCStatsRequestImpl.h 28 #include "core/dom/ActiveDOMObject.h"
42 class RTCStatsRequestImpl FINAL : public RTCStatsRequest, public ActiveDOMObject {
53 // ActiveDOMObject
RTCVoidRequestImpl.h 34 #include "core/dom/ActiveDOMObject.h"
44 class RTCVoidRequestImpl FINAL : public RTCVoidRequest, public ActiveDOMObject {
53 // ActiveDOMObject
MediaStreamTrack.h 30 #include "core/dom/ActiveDOMObject.h"
48 class MediaStreamTrack FINAL : public RefCountedWillBeRefCountedGarbageCollected<MediaStreamTrack>, public ScriptWrappable, public ActiveDOMObject, public EventTargetWithInlineData, public MediaStreamSource::Observer {
82 // ActiveDOMObject
RTCDTMFSender.h 30 #include "core/dom/ActiveDOMObject.h"
46 class RTCDTMFSender FINAL : public RefCountedWillBeRefCountedGarbageCollected<RTCDTMFSender>, public ScriptWrappable, public EventTargetWithInlineData, public blink::WebRTCDTMFSenderHandlerClient, public ActiveDOMObject {
69 // ActiveDOMObject
RTCSessionDescriptionRequestImpl.h 34 #include "core/dom/ActiveDOMObject.h"
50 class RTCSessionDescriptionRequestImpl FINAL : public RTCSessionDescriptionRequest, public ActiveDOMObject {
58 // ActiveDOMObject
  /external/chromium_org/third_party/WebKit/Source/modules/battery/
BatteryManager.h 20 class BatteryManager FINAL : public RefCountedWillBeRefCountedGarbageCollected<BatteryManager>, public ActiveDOMObject, public DeviceEventControllerBase, public EventTargetWithInlineData {
50 // ActiveDOMObject implementation.
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptPromiseResolverWithContext.h 13 #include "core/dom/ActiveDOMObject.h"
26 // - This class is an ActiveDOMObject and keeps track of the associated
30 class ScriptPromiseResolverWithContext : public ActiveDOMObject, public RefCounted<ScriptPromiseResolverWithContext> {
78 // ActiveDOMObject implementation.
89 // this is an ActiveDOMObject.
  /external/chromium_org/third_party/WebKit/Source/core/workers/
AbstractWorker.h 35 #include "core/dom/ActiveDOMObject.h"
50 class AbstractWorker : public RefCountedWillBeRefCountedGarbageCollected<AbstractWorker>, public EventTargetWithInlineData, public ActiveDOMObject {
55 virtual ExecutionContext* executionContext() const OVERRIDE FINAL { return ActiveDOMObject::executionContext(); }
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseContext.h 31 #include "core/dom/ActiveDOMObject.h"
49 , public ActiveDOMObject
59 // For life-cycle management (inherited from ActiveDOMObject):
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontFaceSet.h 32 #include "core/dom/ActiveDOMObject.h"
61 class FontFaceSet FINAL : public GarbageCollectedFinalized<FontFaceSet>, public HeapSupplement<Document>, public ActiveDOMObject, public EventTargetWithInlineData {
65 class FontFaceSet FINAL : public RefCountedSupplement<Document, FontFaceSet>, public ActiveDOMObject, public EventTargetWithInlineData {
100 // ActiveDOMObject
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReader.h 35 #include "core/dom/ActiveDOMObject.h"
52 class FileReader FINAL : public RefCountedWillBeRefCountedGarbageCollected<FileReader>, public ScriptWrappable, public ActiveDOMObject, public FileReaderLoaderClient, public EventTargetWithInlineData {
81 // ActiveDOMObject
86 virtual ExecutionContext* executionContext() const OVERRIDE { return ActiveDOMObject::executionContext(); }
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriter.h 35 #include "core/dom/ActiveDOMObject.h"
50 class FileWriter FINAL : public FileWriterBase, public ScriptWrappable, public ActiveDOMObject, public EventTargetWithInlineData, public blink::WebFileWriterClient {
74 // ActiveDOMObject
79 virtual ExecutionContext* executionContext() const OVERRIDE { return ActiveDOMObject::executionContext(); }
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
Notification.h 35 #include "core/dom/ActiveDOMObject.h"
51 class Notification : public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<Notification>, public ScriptWrappable, public ActiveDOMObject, public EventTargetWithInlineData {
86 virtual ExecutionContext* executionContext() const OVERRIDE FINAL { return ActiveDOMObject::executionContext(); }
90 // ActiveDOMObject interface.

Completed in 651 milliseconds

1 2 3 4 5 6