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

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMWindowLifecycleObserver.h 35 class LocalDOMWindow;
37 template<> void observerContext(LocalDOMWindow*, LifecycleObserver<LocalDOMWindow>*);
38 template<> void unobserverContext(LocalDOMWindow*, LifecycleObserver<LocalDOMWindow>*);
40 class DOMWindowLifecycleObserver : public LifecycleObserver<LocalDOMWindow> {
42 explicit DOMWindowLifecycleObserver(LocalDOMWindow*);
45 LocalDOMWindow* window() const;
47 virtual void didAddEventListener(LocalDOMWindow*, const AtomicString&) { }
48 virtual void didRemoveEventListener(LocalDOMWindow*, const AtomicString&) {
    [all...]
DOMWindowLifecycleObserver.cpp 30 #include "core/frame/LocalDOMWindow.h"
34 template<> void observerContext(LocalDOMWindow* context, LifecycleObserver<LocalDOMWindow>* observer)
39 template<> void unobserverContext(LocalDOMWindow* context, LifecycleObserver<LocalDOMWindow>* observer)
44 DOMWindowLifecycleObserver::DOMWindowLifecycleObserver(LocalDOMWindow* window)
45 : LifecycleObserver<LocalDOMWindow>(window, DOMWindowLifecycleObserverType)
53 LocalDOMWindow* DOMWindowLifecycleObserver::window() const
55 return static_cast<LocalDOMWindow*>(lifecycleContext());
Location.h 41 class LocalDOMWindow;
55 void setHref(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&);
58 void assign(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&);
59 void replace(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&);
60 void reload(LocalDOMWindow* callingWindow);
62 void setProtocol(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&, ExceptionState&)
    [all...]
DOMWindowLifecycleNotifier.h 37 class LocalDOMWindow;
39 class DOMWindowLifecycleNotifier FINAL : public LifecycleNotifier<LocalDOMWindow> {
41 static PassOwnPtr<DOMWindowLifecycleNotifier> create(LocalDOMWindow*);
43 void notifyAddEventListener(LocalDOMWindow*, const AtomicString& eventType);
44 void notifyRemoveEventListener(LocalDOMWindow*, const AtomicString& eventType);
45 void notifyRemoveAllEventListeners(LocalDOMWindow*);
51 explicit DOMWindowLifecycleNotifier(LocalDOMWindow*);
DOMWindowLifecycleNotifier.cpp 32 DOMWindowLifecycleNotifier::DOMWindowLifecycleNotifier(LocalDOMWindow* context)
33 : LifecycleNotifier<LocalDOMWindow>(context)
44 LifecycleNotifier<LocalDOMWindow>::addObserver(observer);
54 LifecycleNotifier<LocalDOMWindow>::removeObserver(observer);
57 PassOwnPtr<DOMWindowLifecycleNotifier> DOMWindowLifecycleNotifier::create(LocalDOMWindow* context)
62 void DOMWindowLifecycleNotifier::notifyAddEventListener(LocalDOMWindow* window, const AtomicString& eventType)
69 void DOMWindowLifecycleNotifier::notifyRemoveEventListener(LocalDOMWindow* window, const AtomicString& eventType)
76 void DOMWindowLifecycleNotifier::notifyRemoveAllEventListeners(LocalDOMWindow* window)
DOMWindowProperty.h 33 class LocalDOMWindow;
56 LocalDOMWindow* m_associatedDOMWindow;
DeviceSingleWindowEventController.h 26 virtual void didAddEventListener(LocalDOMWindow*, const AtomicString&) OVERRIDE;
27 virtual void didRemoveEventListener(LocalDOMWindow*, const AtomicString&) OVERRIDE;
28 virtual void didRemoveAllEventListeners(LocalDOMWindow*) OVERRIDE;
LocalDOMWindow.h 86 class LocalDOMWindow FINAL : public RefCountedWillBeGarbageCollectedFinalized<LocalDOMWindow>, public EventTargetWithInlineData, public DOMWindowBase64, public FrameDestructionObserver, public WillBeHeapSupplementable<LocalDOMWindow>, public LifecycleContext<LocalDOMWindow> {
88 REFCOUNTED_EVENT_TARGET(LocalDOMWindow);
89 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(LocalDOMWindow);
92 static PassRefPtrWillBeRawPtr<LocalDOMWindow> create(LocalFrame& frame)
94 return adoptRefWillBeNoop(new LocalDOMWindow(frame));
96 virtual ~LocalDOMWindow();
103 virtual LocalDOMWindow* toDOMWindow() OVERRIDE
    [all...]
Location.cpp 36 #include "core/frame/LocalDOMWindow.h"
143 void Location::setHref(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String& url)
150 void Location::setProtocol(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String& protocol, ExceptionState& exceptionState)
162 void Location::setHost(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String& host)
171 void Location::setHostname(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String& hostname)
180 void Location::setPort(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String& portString
    [all...]
LocalDOMWindow.cpp 28 #include "core/frame/LocalDOMWindow.h"
122 PostMessageTimer(LocalDOMWindow& window, PassRefPtr<SerializedScriptValue> message, const String& sourceOrigin, PassRefPtrWillBeRawPtr<LocalDOMWindow> source, PassOwnPtr<MessagePortChannelArray> channels, SecurityOrigin* targetOrigin, PassRefPtrWillBeRawPtr<ScriptCallStack> stackTrace, UserGestureToken* userGestureToken)
144 LocalDOMWindow* source() const { return m_source.get(); }
156 // owned by the LocalDOMWindow. Ideally PostMessageTimer should be moved to
157 // the heap and use Member<LocalDOMWindow>.
158 LocalDOMWindow* m_window;
161 RefPtrWillBePersistent<LocalDOMWindow> m_source;
179 typedef HashCountedSet<LocalDOMWindow*> DOMWindowSet;
193 static void addUnloadEventListener(LocalDOMWindow* domWindow
    [all...]
Frame.h 43 class LocalDOMWindow;
77 // FIXME: LocalDOMWindow and Document should both be moved to LocalFrame
79 virtual void setDOMWindow(PassRefPtrWillBeRawPtr<LocalDOMWindow>);
80 LocalDOMWindow* domWindow() const;
107 RefPtrWillBeMember<LocalDOMWindow> m_domWindow;
124 inline LocalDOMWindow* Frame::domWindow() const
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
DOMWindowSpeechSynthesis.h 36 class LocalDOMWindow;
38 class DOMWindowSpeechSynthesis FINAL : public NoBaseWillBeGarbageCollected<DOMWindowSpeechSynthesis>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
42 static SpeechSynthesis* speechSynthesis(LocalDOMWindow&);
43 static DOMWindowSpeechSynthesis& from(LocalDOMWindow&);
48 explicit DOMWindowSpeechSynthesis(LocalDOMWindow&);
DOMWindowSpeechSynthesis.cpp 34 #include "core/frame/LocalDOMWindow.h"
40 DOMWindowSpeechSynthesis::DOMWindowSpeechSynthesis(LocalDOMWindow& window)
53 DOMWindowSpeechSynthesis& DOMWindowSpeechSynthesis::from(LocalDOMWindow& window)
55 DOMWindowSpeechSynthesis* supplement = static_cast<DOMWindowSpeechSynthesis*>(WillBeHeapSupplement<LocalDOMWindow>::from(window, supplementName()));
64 SpeechSynthesis* DOMWindowSpeechSynthesis::speechSynthesis(LocalDOMWindow& window)
79 WillBeHeapSupplement<LocalDOMWindow>::trace(visitor);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DOMWindowIndexedDatabase.h 36 class LocalDOMWindow;
38 class DOMWindowIndexedDatabase FINAL : public NoBaseWillBeGarbageCollected<DOMWindowIndexedDatabase>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
42 static DOMWindowIndexedDatabase& from(LocalDOMWindow&);
44 static IDBFactory* indexedDB(LocalDOMWindow&);
52 explicit DOMWindowIndexedDatabase(LocalDOMWindow&);
57 LocalDOMWindow& m_window;
DOMWindowIndexedDatabase.cpp 30 #include "core/frame/LocalDOMWindow.h"
36 DOMWindowIndexedDatabase::DOMWindowIndexedDatabase(LocalDOMWindow& window)
47 WillBeHeapSupplement<LocalDOMWindow>::trace(visitor);
56 DOMWindowIndexedDatabase& DOMWindowIndexedDatabase::from(LocalDOMWindow& window)
58 DOMWindowIndexedDatabase* supplement = static_cast<DOMWindowIndexedDatabase*>(WillBeHeapSupplement<LocalDOMWindow>::from(window, supplementName()));
78 IDBFactory* DOMWindowIndexedDatabase::indexedDB(LocalDOMWindow& window)
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMWindowPagePopup.h 39 class LocalDOMWindow;
43 class DOMWindowPagePopup FINAL : public NoBaseWillBeGarbageCollected<DOMWindowPagePopup>, public WillBeHeapSupplement<LocalDOMWindow> {
46 static PagePopupController* pagePopupController(LocalDOMWindow&);
47 static void install(LocalDOMWindow&, PagePopupClient*);
48 static void uninstall(LocalDOMWindow&);
CreateWindow.h 30 #include "core/frame/LocalDOMWindow.h"
41 LocalDOMWindow& callingWindow, LocalFrame& firstFrame, LocalFrame& openerFrame, LocalDOMWindow::PrepareDialogFunction = 0, void* functionContext = 0);
DOMWindowPagePopup.cpp 34 #include "core/frame/LocalDOMWindow.h"
52 PagePopupController* DOMWindowPagePopup::pagePopupController(LocalDOMWindow& window)
59 void DOMWindowPagePopup::install(LocalDOMWindow& window, PagePopupClient* popupClient)
65 void DOMWindowPagePopup::uninstall(LocalDOMWindow& window)
74 WillBeHeapSupplement<LocalDOMWindow>::trace(visitor);
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
DOMWindowCrypto.h 41 class LocalDOMWindow;
43 class DOMWindowCrypto FINAL : public NoBaseWillBeGarbageCollected<DOMWindowCrypto>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
47 static DOMWindowCrypto& from(LocalDOMWindow&);
48 static Crypto* crypto(LocalDOMWindow&);
54 explicit DOMWindowCrypto(LocalDOMWindow&);
DOMWindowCrypto.cpp 34 #include "core/frame/LocalDOMWindow.h"
39 DOMWindowCrypto::DOMWindowCrypto(LocalDOMWindow& window)
51 DOMWindowCrypto& DOMWindowCrypto::from(LocalDOMWindow& window)
53 DOMWindowCrypto* supplement = static_cast<DOMWindowCrypto*>(WillBeHeapSupplement<LocalDOMWindow>::from(window, supplementName()));
61 Crypto* DOMWindowCrypto::crypto(LocalDOMWindow& window)
76 WillBeHeapSupplement<LocalDOMWindow>::trace(visitor);
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
DOMWindowQuota.h 41 class LocalDOMWindow;
43 class DOMWindowQuota FINAL : public NoBaseWillBeGarbageCollected<DOMWindowQuota>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
47 static DOMWindowQuota& from(LocalDOMWindow&);
48 static DeprecatedStorageInfo* webkitStorageInfo(LocalDOMWindow&);
54 explicit DOMWindowQuota(LocalDOMWindow&);
DOMWindowQuota.cpp 34 #include "core/frame/LocalDOMWindow.h"
41 DOMWindowQuota::DOMWindowQuota(LocalDOMWindow& window)
54 DOMWindowQuota& DOMWindowQuota::from(LocalDOMWindow& window)
56 DOMWindowQuota* supplement = static_cast<DOMWindowQuota*>(WillBeHeapSupplement<LocalDOMWindow>::from(window, supplementName()));
65 DeprecatedStorageInfo* DOMWindowQuota::webkitStorageInfo(LocalDOMWindow& window)
80 WillBeHeapSupplement<LocalDOMWindow>::trace(visitor);
  /external/chromium_org/third_party/WebKit/Source/core/events/
WindowEventContext.h 35 class LocalDOMWindow;
46 LocalDOMWindow* window() const;
51 RefPtrWillBeMember<LocalDOMWindow> m_window;
55 inline LocalDOMWindow* WindowEventContext::window() const
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DOMWindowFileSystem.h 34 class LocalDOMWindow;
41 static void webkitRequestFileSystem(LocalDOMWindow&, int type, long long size, FileSystemCallback*, ErrorCallback*);
42 static void webkitResolveLocalFileSystemURL(LocalDOMWindow&, const String&, EntryCallback*, ErrorCallback*);
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DOMWindowWebDatabase.h 36 class LocalDOMWindow;
44 static PassRefPtrWillBeRawPtr<Database> openDatabase(LocalDOMWindow&, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, DatabaseCallback* creationCallback, ExceptionState&);

Completed in 385 milliseconds

1 2 3 4 5