Searched refs:DOMWindow (Results 1 - 25 of 87) sorted by relevance

1234

/external/webkit/Source/WebCore/page/
H A DLocation.h38 class DOMWindow;
51 void setHref(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow);
54 void assign(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow);
55 void replace(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow);
56 void reload(DOMWindow* activeWindow);
58 void setProtocol(const String&, DOMWindow* activeWindow, DOMWindow* firstWindo
[all...]
H A DLocation.cpp32 #include "DOMWindow.h"
149 void Location::setHref(const String& urlString, DOMWindow* activeWindow, DOMWindow* firstWindow)
156 void Location::setProtocol(const String& protocol, DOMWindow* activeWindow, DOMWindow* firstWindow, ExceptionCode& ec)
168 void Location::setHost(const String& host, DOMWindow* activeWindow, DOMWindow* firstWindow)
177 void Location::setHostname(const String& hostname, DOMWindow* activeWindow, DOMWindow* firstWindow)
186 void Location::setPort(const String& portString, DOMWindow* activeWindo
[all...]
H A DDOMWindow.cpp28 #include "DOMWindow.h"
123 PostMessageTimer(DOMWindow* window, PassRefPtr<SerializedScriptValue> message, const String& sourceOrigin, PassRefPtr<DOMWindow> source, PassOwnPtr<MessagePortChannelArray> channels, SecurityOrigin* targetOrigin)
146 RefPtr<DOMWindow> m_window;
149 RefPtr<DOMWindow> m_source;
154 typedef HashCountedSet<DOMWindow*> DOMWindowSet;
168 static void addUnloadEventListener(DOMWindow* domWindow)
176 static void removeUnloadEventListener(DOMWindow* domWindow)
187 static void removeAllUnloadEventListeners(DOMWindow* domWindow)
198 static void addBeforeUnloadEventListener(DOMWindow* domWindo
395 DOMWindow::DOMWindow(Frame* frame) function in class:WebCore::DOMWindow
[all...]
H A DDOMWindow.h81 class DOMWindow : public RefCounted<DOMWindow>, public EventTarget { class in namespace:WebCore
83 static PassRefPtr<DOMWindow> create(Frame* frame) { return adoptRef(new DOMWindow(frame)); }
84 virtual ~DOMWindow();
86 virtual DOMWindow* toDOMWindow() { return this; }
109 // FIXME: We can remove this function once V8 showModalDialog is changed to use DOMWindow.
132 void setLocation(const String& location, DOMWindow* activeWindow, DOMWindow* firstWindow,
145 PassRefPtr<DOMWindow> ope
[all...]
/external/webkit/Source/WebCore/bindings/generic/
H A DBindingSecurityBase.h36 class DOMWindow;
45 static DOMWindow* getDOMWindow(Frame*);
47 static bool canAccess(DOMWindow* active, DOMWindow* target);
H A DBindingSecurityBase.cpp34 #include "DOMWindow.h"
40 DOMWindow* BindingSecurityBase::getDOMWindow(Frame* frame)
76 bool BindingSecurityBase::canAccess(DOMWindow* activeWindow,
77 DOMWindow* targetWindow)
/external/webkit/Source/WebCore/dom/
H A DDeviceMotionController.h29 #include "DOMWindow.h"
43 void addListener(DOMWindow*);
44 void removeListener(DOMWindow*);
45 void removeAllListeners(DOMWindow*);
55 typedef HashCountedSet<RefPtr<DOMWindow> > ListenersCountedSet;
57 typedef HashSet<RefPtr<DOMWindow> > ListenersSet;
H A DDeviceOrientationController.h29 #include "DOMWindow.h"
45 void addListener(DOMWindow*);
46 void removeListener(DOMWindow*);
47 void removeAllListeners(DOMWindow*);
58 typedef HashCountedSet<RefPtr<DOMWindow> > ListenersCountedSet;
60 typedef HashSet<RefPtr<DOMWindow> > ListenersSet;
H A DWindowEventContext.h34 class DOMWindow;
44 DOMWindow* window() const;
49 RefPtr<DOMWindow> m_window;
53 inline DOMWindow* WindowEventContext::window() const
H A DMessageEvent.h31 #include "DOMWindow.h"
38 class DOMWindow;
46 static PassRefPtr<MessageEvent> create(PassOwnPtr<MessagePortArray> ports, PassRefPtr<SerializedScriptValue> data = 0, const String& origin = "", const String& lastEventId = "", PassRefPtr<DOMWindow> source = 0)
52 void initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, PassOwnPtr<MessagePortArray>);
57 DOMWindow* source() const { return m_source.get(); }
63 void initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, MessagePort*);
69 MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, PassRefPtr<DOMWindow> source, PassOwnPtr<MessagePortArray>);
74 RefPtr<DOMWindow> m_source;
H A DMessageEvent.idl36 readonly attribute DOMWindow source;
40 [Custom] void initMessageEvent(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in SerializedScriptValue dataArg, in DOMString originArg, in DOMString lastEventIdArg, in DOMWindow sourceArg, in Array messagePorts);
45 void initMessageEvent(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in SerializedScriptValue dataArg, in DOMString originArg, in DOMString lastEventIdArg, in DOMWindow sourceArg, in MessagePort messagePort);
H A DCompositionEvent.idl36 in DOMWindow viewArg,
H A DTextEvent.idl36 in DOMWindow viewArg,
H A DUIEvent.idl24 readonly attribute DOMWindow view;
30 in DOMWindow view,
H A DDeviceMotionController.cpp57 Vector<RefPtr<DOMWindow> > listenersVector;
64 void DeviceMotionController::addListener(DOMWindow* window)
80 void DeviceMotionController::removeListener(DOMWindow* window)
88 void DeviceMotionController::removeAllListeners(DOMWindow* window)
90 // May be called with a DOMWindow that's not a listener.
103 Vector<RefPtr<DOMWindow> > listenersVector;
H A DDeviceOrientationController.cpp57 Vector<RefPtr<DOMWindow> > listenersVector;
64 void DeviceOrientationController::addListener(DOMWindow* window)
82 void DeviceOrientationController::removeListener(DOMWindow* window)
90 void DeviceOrientationController::removeAllListeners(DOMWindow* window)
92 // May be called with a DOMWindow that's not a listener.
105 Vector<RefPtr<DOMWindow> > listenersVector;
H A DMessageEvent.cpp31 #include "DOMWindow.h"
41 MessageEvent::MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, PassRefPtr<DOMWindow> source, PassOwnPtr<MessagePortArray> ports)
55 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, PassOwnPtr<MessagePortArray> ports)
78 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, MessagePort* port)
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptCachedFrameData.h40 class DOMWindow;
49 DOMWindow* domWindow() const { return 0; }
68 class DOMWindow;
78 DOMWindow* domWindow() const;
83 DOMWindow* m_domWindow;
H A DNPV8Object.h49 class DOMWindow;
62 DOMWindow* rootObject;
73 NPObject* npCreateV8ScriptObject(NPP, v8::Handle<v8::Object>, DOMWindow*);
/external/webkit/Source/WebCore/bindings/js/
H A DScriptCachedFrameData.h41 class DOMWindow;
54 DOMWindow* domWindow() const;
58 DOMWindow* m_domWindow;
H A DJSDOMWindowBase.h32 class DOMWindow;
47 JSDOMWindowBase(JSC::JSGlobalData&, JSC::Structure*, PassRefPtr<DOMWindow>, JSDOMWindowShell*);
52 DOMWindow* impl() const { return m_impl.get(); }
85 RefPtr<DOMWindow> m_impl;
94 // use that DOMWindow's prototype chain.
95 JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, DOMWindow*);
96 JSC::JSValue toJS(JSC::ExecState*, DOMWindow*);
/external/webkit/Source/WebCore/bindings/v8/specialization/
H A DV8BindingState.h52 DOMWindow* activeWindow();
53 DOMWindow* firstWindow();
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8DocumentLocationCustom.cpp27 #include "DOMWindow.h"
41 DOMWindow* window = document->frame()->domWindow();
51 DOMWindow* window = document->frame()->domWindow();
/external/webkit/Source/WebCore/html/
H A DHTMLFrameOwnerElement.h29 class DOMWindow;
42 DOMWindow* contentWindow() const;
/external/webkit/Source/WebCore/bindings/objc/
H A DDOMAbstractView.mm69 WebCore::DOMWindow* core(DOMAbstractView *wrapper)
78 DOMAbstractView *kit(WebCore::DOMWindow* value)

Completed in 280 milliseconds

1234