Home | History | Annotate | Download | only in page

Lines Matching refs:domWindow

32 #include "DOMWindow.h"
149 void Location::setHref(const String& urlString, DOMWindow* activeWindow, DOMWindow* firstWindow)
153 m_frame->domWindow()->setLocation(urlString, activeWindow, firstWindow);
156 void Location::setProtocol(const String& protocol, DOMWindow* activeWindow, DOMWindow* firstWindow, ExceptionCode& ec)
165 m_frame->domWindow()->setLocation(url.string(), activeWindow, firstWindow);
168 void Location::setHost(const String& host, DOMWindow* activeWindow, DOMWindow* firstWindow)
174 m_frame->domWindow()->setLocation(url.string(), activeWindow, firstWindow);
177 void Location::setHostname(const String& hostname, DOMWindow* activeWindow, DOMWindow* firstWindow)
183 m_frame->domWindow()->setLocation(url.string(), activeWindow, firstWindow);
186 void Location::setPort(const String& portString, DOMWindow* activeWindow, DOMWindow* firstWindow)
196 m_frame->domWindow()->setLocation(url.string(), activeWindow, firstWindow);
199 void Location::setPathname(const String& pathname, DOMWindow* activeWindow, DOMWindow* firstWindow)
205 m_frame->domWindow()->setLocation(url.string(), activeWindow, firstWindow);
208 void Location::setSearch(const String& search, DOMWindow* activeWindow, DOMWindow* firstWindow)
214 m_frame->domWindow()->setLocation(url.string(), activeWindow, firstWindow);
217 void Location::setHash(const String& hash, DOMWindow* activeWindow, DOMWindow* firstWindow)
232 m_frame->domWindow()->setLocation(url.string(), activeWindow, firstWindow);
235 void Location::assign(const String& urlString, DOMWindow* activeWindow, DOMWindow* firstWindow)
239 m_frame->domWindow()->setLocation(urlString, activeWindow, firstWindow);
242 void Location::replace(const String& urlString, DOMWindow* activeWindow, DOMWindow* firstWindow)
246 m_frame->domWindow()->setLocation(urlString, activeWindow, firstWindow, LockHistoryAndBackForwardList);
249 void Location::reload(DOMWindow* activeWindow)
256 DOMWindow* targetWindow = m_frame->domWindow();