Home
last modified time | relevance | path

Searched refs:LocalDOMWindow (Results 1 – 25 of 119) sorted by relevance

12345

/external/chromium_org/third_party/WebKit/Source/core/frame/
DLocation.h41 class LocalDOMWindow; variable
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&, Exce…
64 void setHost(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&);
66 void setHostname(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&);
68 void setPort(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&);
70 void setPathname(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&);
[all …]
DLocalDOMWindow.cpp122 …sageTimer(LocalDOMWindow& window, PassRefPtr<SerializedScriptValue> message, const String& sourceO… in PostMessageTimer()
144 LocalDOMWindow* source() const { return m_source.get(); } in source()
158 LocalDOMWindow* m_window;
161 RefPtrWillBePersistent<LocalDOMWindow> m_source;
179 typedef HashCountedSet<LocalDOMWindow*> DOMWindowSet;
193 static void addUnloadEventListener(LocalDOMWindow* domWindow) in addUnloadEventListener()
201 static void removeUnloadEventListener(LocalDOMWindow* domWindow) in removeUnloadEventListener()
212 static void removeAllUnloadEventListeners(LocalDOMWindow* domWindow) in removeAllUnloadEventListeners()
223 static void addBeforeUnloadEventListener(LocalDOMWindow* domWindow) in addBeforeUnloadEventListener()
231 static void removeBeforeUnloadEventListener(LocalDOMWindow* domWindow) in removeBeforeUnloadEventListener()
[all …]
DDOMWindowLifecycleObserver.h35 class LocalDOMWindow; variable
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&) { } in didAddEventListener() argument
48 virtual void didRemoveEventListener(LocalDOMWindow*, const AtomicString&) { } in didRemoveEventListener() argument
49 virtual void didRemoveAllEventListeners(LocalDOMWindow*) { } in didRemoveAllEventListeners() argument
DLocation.cpp143 void Location::setHref(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String& … in setHref()
150 void Location::setProtocol(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const Stri… in setProtocol()
162 void Location::setHost(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String& … in setHost()
171 void Location::setHostname(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const Stri… in setHostname()
180 void Location::setPort(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String& … in setPort()
189 void Location::setPathname(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const Stri… in setPathname()
198 void Location::setSearch(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String… in setSearch()
207 void Location::setHash(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String& … in setHash()
225 void Location::assign(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String& u… in assign()
232 void Location::replace(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String& … in replace()
[all …]
DLocalDOMWindow.h86LocalDOMWindow FINAL : public RefCountedWillBeGarbageCollectedFinalized<LocalDOMWindow>, public Ev…
88 REFCOUNTED_EVENT_TARGET(LocalDOMWindow);
89 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(LocalDOMWindow);
92 static PassRefPtrWillBeRawPtr<LocalDOMWindow> create(LocalFrame& frame) in create()
94 return adoptRefWillBeNoop(new LocalDOMWindow(frame)); in create()
96 virtual ~LocalDOMWindow();
103 virtual LocalDOMWindow* toDOMWindow() OVERRIDE;
134 …void setLocation(const String& location, LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWin…
147 …PassRefPtrWillBeRawPtr<LocalDOMWindow> open(const String& urlString, const AtomicString& frameName…
148 LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow);
[all …]
DDOMWindowLifecycleObserver.cpp34 template<> void observerContext(LocalDOMWindow* context, LifecycleObserver<LocalDOMWindow>* observe… in observerContext()
39 template<> void unobserverContext(LocalDOMWindow* context, LifecycleObserver<LocalDOMWindow>* obser… in unobserverContext()
44 DOMWindowLifecycleObserver::DOMWindowLifecycleObserver(LocalDOMWindow* window) in DOMWindowLifecycleObserver()
45 : LifecycleObserver<LocalDOMWindow>(window, DOMWindowLifecycleObserverType) in DOMWindowLifecycleObserver()
53 LocalDOMWindow* DOMWindowLifecycleObserver::window() const in window()
55 return static_cast<LocalDOMWindow*>(lifecycleContext()); in window()
DDOMWindowLifecycleNotifier.h37 class LocalDOMWindow; variable
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*);
DDOMWindowLifecycleNotifier.cpp32 DOMWindowLifecycleNotifier::DOMWindowLifecycleNotifier(LocalDOMWindow* context) in DOMWindowLifecycleNotifier()
33 : LifecycleNotifier<LocalDOMWindow>(context) in DOMWindowLifecycleNotifier()
44 LifecycleNotifier<LocalDOMWindow>::addObserver(observer); in addObserver()
54 LifecycleNotifier<LocalDOMWindow>::removeObserver(observer); in removeObserver()
57 PassOwnPtr<DOMWindowLifecycleNotifier> DOMWindowLifecycleNotifier::create(LocalDOMWindow* context) in create()
62 void DOMWindowLifecycleNotifier::notifyAddEventListener(LocalDOMWindow* window, const AtomicString&… in notifyAddEventListener()
69 void DOMWindowLifecycleNotifier::notifyRemoveEventListener(LocalDOMWindow* window, const AtomicStri… in notifyRemoveEventListener()
76 void DOMWindowLifecycleNotifier::notifyRemoveAllEventListeners(LocalDOMWindow* window) in notifyRemoveAllEventListeners()
DFrame.h43 class LocalDOMWindow; variable
79 virtual void setDOMWindow(PassRefPtrWillBeRawPtr<LocalDOMWindow>);
80 LocalDOMWindow* domWindow() const;
107 RefPtrWillBeMember<LocalDOMWindow> m_domWindow;
124 inline LocalDOMWindow* Frame::domWindow() const in domWindow()
DDeviceSingleWindowEventController.h26 virtual void didAddEventListener(LocalDOMWindow*, const AtomicString&) OVERRIDE;
27 virtual void didRemoveEventListener(LocalDOMWindow*, const AtomicString&) OVERRIDE;
28 virtual void didRemoveAllEventListeners(LocalDOMWindow*) OVERRIDE;
DDeviceSingleWindowEventController.cpp48 void DeviceSingleWindowEventController::didAddEventListener(LocalDOMWindow* window, const AtomicStr… in didAddEventListener()
59 void DeviceSingleWindowEventController::didRemoveEventListener(LocalDOMWindow* window, const Atomic… in didRemoveEventListener()
68 void DeviceSingleWindowEventController::didRemoveAllEventListeners(LocalDOMWindow*) in didRemoveAllEventListeners() argument
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DDOMWindowIndexedDatabase.h36 class LocalDOMWindow; variable
38 …bageCollected<DOMWindowIndexedDatabase>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWi…
42 static DOMWindowIndexedDatabase& from(LocalDOMWindow&);
44 static IDBFactory* indexedDB(LocalDOMWindow&);
52 explicit DOMWindowIndexedDatabase(LocalDOMWindow&);
57 LocalDOMWindow& m_window;
DDOMWindowIndexedDatabase.cpp36 DOMWindowIndexedDatabase::DOMWindowIndexedDatabase(LocalDOMWindow& window) in DOMWindowIndexedDatabase()
47 WillBeHeapSupplement<LocalDOMWindow>::trace(visitor); in trace()
56 DOMWindowIndexedDatabase& DOMWindowIndexedDatabase::from(LocalDOMWindow& window) in from()
58 …lement = static_cast<DOMWindowIndexedDatabase*>(WillBeHeapSupplement<LocalDOMWindow>::from(window,… in from()
78 IDBFactory* DOMWindowIndexedDatabase::indexedDB(LocalDOMWindow& window) in indexedDB()
/external/chromium_org/third_party/WebKit/Source/modules/speech/
DDOMWindowSpeechSynthesis.h36 class LocalDOMWindow; variable
38 …bageCollected<DOMWindowSpeechSynthesis>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWi…
42 static SpeechSynthesis* speechSynthesis(LocalDOMWindow&);
43 static DOMWindowSpeechSynthesis& from(LocalDOMWindow&);
48 explicit DOMWindowSpeechSynthesis(LocalDOMWindow&);
DDOMWindowSpeechSynthesis.cpp40 DOMWindowSpeechSynthesis::DOMWindowSpeechSynthesis(LocalDOMWindow& window) in DOMWindowSpeechSynthesis()
53 DOMWindowSpeechSynthesis& DOMWindowSpeechSynthesis::from(LocalDOMWindow& window) in from()
55 …lement = static_cast<DOMWindowSpeechSynthesis*>(WillBeHeapSupplement<LocalDOMWindow>::from(window,… in from()
64 SpeechSynthesis* DOMWindowSpeechSynthesis::speechSynthesis(LocalDOMWindow& window) in speechSynthesis()
79 WillBeHeapSupplement<LocalDOMWindow>::trace(visitor); in trace()
/external/chromium_org/third_party/WebKit/Source/core/page/
DDOMWindowPagePopup.h39 class LocalDOMWindow; variable
43 …lic NoBaseWillBeGarbageCollected<DOMWindowPagePopup>, public WillBeHeapSupplement<LocalDOMWindow> {
46 static PagePopupController* pagePopupController(LocalDOMWindow&);
47 static void install(LocalDOMWindow&, PagePopupClient*);
48 static void uninstall(LocalDOMWindow&);
DDOMWindowPagePopup.cpp52 PagePopupController* DOMWindowPagePopup::pagePopupController(LocalDOMWindow& window) in pagePopupController()
59 void DOMWindowPagePopup::install(LocalDOMWindow& window, PagePopupClient* popupClient) in install()
65 void DOMWindowPagePopup::uninstall(LocalDOMWindow& window) in uninstall()
74 WillBeHeapSupplement<LocalDOMWindow>::trace(visitor); in trace()
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
DDOMWindowCrypto.h41 class LocalDOMWindow; variable
43 …WillBeGarbageCollected<DOMWindowCrypto>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWi…
47 static DOMWindowCrypto& from(LocalDOMWindow&);
48 static Crypto* crypto(LocalDOMWindow&);
54 explicit DOMWindowCrypto(LocalDOMWindow&);
DDOMWindowCrypto.cpp39 DOMWindowCrypto::DOMWindowCrypto(LocalDOMWindow& window) in DOMWindowCrypto()
51 DOMWindowCrypto& DOMWindowCrypto::from(LocalDOMWindow& window) in from()
53 …DOMWindowCrypto* supplement = static_cast<DOMWindowCrypto*>(WillBeHeapSupplement<LocalDOMWindow>::… in from()
61 Crypto* DOMWindowCrypto::crypto(LocalDOMWindow& window) in crypto()
76 WillBeHeapSupplement<LocalDOMWindow>::trace(visitor); in trace()
/external/chromium_org/third_party/WebKit/Source/modules/quota/
DDOMWindowQuota.h41 class LocalDOMWindow; variable
43 …eWillBeGarbageCollected<DOMWindowQuota>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWi…
47 static DOMWindowQuota& from(LocalDOMWindow&);
48 static DeprecatedStorageInfo* webkitStorageInfo(LocalDOMWindow&);
54 explicit DOMWindowQuota(LocalDOMWindow&);
DDOMWindowQuota.cpp41 DOMWindowQuota::DOMWindowQuota(LocalDOMWindow& window) in DOMWindowQuota()
54 DOMWindowQuota& DOMWindowQuota::from(LocalDOMWindow& window) in from()
56 …DOMWindowQuota* supplement = static_cast<DOMWindowQuota*>(WillBeHeapSupplement<LocalDOMWindow>::fr… in from()
65 DeprecatedStorageInfo* DOMWindowQuota::webkitStorageInfo(LocalDOMWindow& window) in webkitStorageInfo()
80 WillBeHeapSupplement<LocalDOMWindow>::trace(visitor); in trace()
/external/chromium_org/third_party/WebKit/Source/core/events/
DWindowEventContext.h35 class LocalDOMWindow; variable
46 LocalDOMWindow* window() const;
51 RefPtrWillBeMember<LocalDOMWindow> m_window;
55 inline LocalDOMWindow* WindowEventContext::window() const in window()
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DDOMWindowFileSystem.h34 class LocalDOMWindow; variable
41 …static void webkitRequestFileSystem(LocalDOMWindow&, int type, long long size, FileSystemCallback*…
42 …static void webkitResolveLocalFileSystemURL(LocalDOMWindow&, const String&, EntryCallback*, ErrorC…
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
DV8WindowCustom.cpp80 LocalDOMWindow* impl = V8Window::toImpl(info.Holder()); in windowSetTimeoutImpl()
192 LocalDOMWindow* impl = V8Window::toImpl(info.Holder()); in frameElementAttributeGetterCustom()
210 LocalDOMWindow* impl = V8Window::toImpl(info.Holder()); in openerAttributeSetterCustom()
247 LocalDOMWindow* window = V8Window::toImpl(info.Holder()); in postMessageMethodCustom()
248 LocalDOMWindow* source = callingDOMWindow(info.GetIsolate()); in postMessageMethodCustom()
311 void dialogCreated(LocalDOMWindow*);
320 void DialogHandler::dialogCreated(LocalDOMWindow* dialogFrame) in dialogCreated()
348 static void setUpDialog(LocalDOMWindow* dialog, void* handler) in setUpDialog()
355 LocalDOMWindow* impl = V8Window::toImpl(info.Holder()); in showModalDialogMethodCustom()
373 LocalDOMWindow* impl = V8Window::toImpl(info.Holder()); in openMethodCustom()
[all …]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DNPV8Object.h43 class LocalDOMWindow; variable
58 LocalDOMWindow* rootObject;
69 NPObject* npCreateV8ScriptObject(NPP, v8::Handle<v8::Object>, LocalDOMWindow*, v8::Isolate*);

12345