Home
last modified time | relevance | path

Searched refs:firstWindow (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/frame/
DLocation.cpp136 void Location::setHref(DOMWindow* activeWindow, DOMWindow* firstWindow, const String& url) in setHref() argument
140 setLocation(url, activeWindow, firstWindow); in setHref()
143 void Location::setProtocol(DOMWindow* activeWindow, DOMWindow* firstWindow, const String& protocol,… in setProtocol() argument
152 setLocation(url.string(), activeWindow, firstWindow); in setProtocol()
155 void Location::setHost(DOMWindow* activeWindow, DOMWindow* firstWindow, const String& host) in setHost() argument
161 setLocation(url.string(), activeWindow, firstWindow); in setHost()
164 void Location::setHostname(DOMWindow* activeWindow, DOMWindow* firstWindow, const String& hostname) in setHostname() argument
170 setLocation(url.string(), activeWindow, firstWindow); in setHostname()
173 void Location::setPort(DOMWindow* activeWindow, DOMWindow* firstWindow, const String& portString) in setPort() argument
179 setLocation(url.string(), activeWindow, firstWindow); in setPort()
[all …]
DLocation.h50 void setHref(DOMWindow* activeWindow, DOMWindow* firstWindow, const String&);
53 void assign(DOMWindow* activeWindow, DOMWindow* firstWindow, const String&);
54 void replace(DOMWindow* activeWindow, DOMWindow* firstWindow, const String&);
57 … void setProtocol(DOMWindow* activeWindow, DOMWindow* firstWindow, const String&, ExceptionState&);
59 void setHost(DOMWindow* activeWindow, DOMWindow* firstWindow, const String&);
61 void setHostname(DOMWindow* activeWindow, DOMWindow* firstWindow, const String&);
63 void setPort(DOMWindow* activeWindow, DOMWindow* firstWindow, const String&);
65 void setPathname(DOMWindow* activeWindow, DOMWindow* firstWindow, const String&);
67 void setSearch(DOMWindow* activeWindow, DOMWindow* firstWindow, const String&);
69 void setHash(DOMWindow* activeWindow, DOMWindow* firstWindow, const String&);
[all …]
DDOMWindow.h136 void setLocation(const String& location, DOMWindow* activeWindow, DOMWindow* firstWindow,
150 DOMWindow* activeWindow, DOMWindow* firstWindow);
154 … DOMWindow* activeWindow, DOMWindow* firstWindow, PrepareDialogFunction, void* functionContext);
DDOMWindow.cpp1653 …tLocation(const String& urlString, DOMWindow* activeWindow, DOMWindow* firstWindow, SetLocationLoc… in setLocation() argument
1665 Frame* firstFrame = firstWindow->frame(); in setLocation()
1784 DOMWindow* activeWindow, DOMWindow* firstWindow) in open() argument
1791 Frame* firstFrame = firstWindow->frame(); in open()
1795 if (!firstWindow->allowPopUp()) { in open()
1841 …DOMWindow* activeWindow, DOMWindow* firstWindow, PrepareDialogFunction function, void* functionCon… in showModalDialog() argument
1848 Frame* firstFrame = firstWindow->frame(); in showModalDialog()
1852 if (!canShowModalDialogNow(m_frame) || !firstWindow->allowPopUp()) in showModalDialog()
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DV8Initializer.cpp94 DOMWindow* firstWindow = toDOMWindow(enteredContext); in messageHandlerInMainThread() local
95 if (!firstWindow->isCurrentlyDisplayedInFrame()) in messageHandlerInMainThread()
108 …String resource = shouldUseDocumentURL ? firstWindow->document()->url() : toCoreString(resourceNam… in messageHandlerInMainThread()
126 Frame* frame = firstWindow->document()->frame(); in messageHandlerInMainThread()
129 firstWindow->document()->reportException(event.release(), callStack, corsStatus); in messageHandlerInMainThread()