OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:callingwindow
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/frame/
Location.h
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&);
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&);
72
void setSearch(LocalDOMWindow*
callingWindow
, LocalDOMWindow* enteredWindow, const String&)
[
all
...]
Location.cpp
143
void Location::setHref(LocalDOMWindow*
callingWindow
, LocalDOMWindow* enteredWindow, const String& url)
147
setLocation(url,
callingWindow
, enteredWindow);
150
void Location::setProtocol(LocalDOMWindow*
callingWindow
, LocalDOMWindow* enteredWindow, const String& protocol, ExceptionState& exceptionState)
159
setLocation(url.string(),
callingWindow
, enteredWindow);
162
void Location::setHost(LocalDOMWindow*
callingWindow
, LocalDOMWindow* enteredWindow, const String& host)
168
setLocation(url.string(),
callingWindow
, enteredWindow);
171
void Location::setHostname(LocalDOMWindow*
callingWindow
, LocalDOMWindow* enteredWindow, const String& hostname)
177
setLocation(url.string(),
callingWindow
, enteredWindow);
180
void Location::setPort(LocalDOMWindow*
callingWindow
, LocalDOMWindow* enteredWindow, const String& portString)
186
setLocation(url.string(),
callingWindow
, enteredWindow)
[
all
...]
LocalDOMWindow.h
134
void setLocation(const String& location, LocalDOMWindow*
callingWindow
, LocalDOMWindow* enteredWindow,
148
LocalDOMWindow*
callingWindow
, LocalDOMWindow* enteredWindow);
152
LocalDOMWindow*
callingWindow
, LocalDOMWindow* enteredWindow, PrepareDialogFunction, void* functionContext);
218
String crossDomainAccessErrorMessage(LocalDOMWindow*
callingWindow
);
219
String sanitizedCrossDomainAccessErrorMessage(LocalDOMWindow*
callingWindow
);
304
bool isInsecureScriptAccess(LocalDOMWindow&
callingWindow
, const String& urlString);
LocalDOMWindow.cpp
[
all
...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
BindingSecurity.cpp
44
static bool isDocumentAccessibleFromDOMWindow(Document* targetDocument, LocalDOMWindow*
callingWindow
)
49
if (!
callingWindow
)
52
if (
callingWindow
->document()->securityOrigin()->canAccess(targetDocument->securityOrigin()))
60
LocalDOMWindow*
callingWindow
= callingDOMWindow(isolate);
61
if (isDocumentAccessibleFromDOMWindow(targetDocument,
callingWindow
))
65
exceptionState.throwSecurityError(targetDocument->domWindow()->sanitizedCrossDomainAccessErrorMessage(
callingWindow
), targetDocument->domWindow()->crossDomainAccessErrorMessage(
callingWindow
));
71
LocalDOMWindow*
callingWindow
= callingDOMWindow(isolate);
72
if (isDocumentAccessibleFromDOMWindow(targetDocument,
callingWindow
))
77
frame->domWindow()->printErrorMessage(targetDocument->domWindow()->crossDomainAccessErrorMessage(
callingWindow
));
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/page/
CreateWindow.cpp
119
LocalDOMWindow&
callingWindow
, LocalFrame& firstFrame, LocalFrame& openerFrame, LocalDOMWindow::PrepareDialogFunction function, void* functionContext)
121
LocalFrame* activeFrame =
callingWindow
.frame();
127
callingWindow
.printErrorMessage("Unable to open a window with invalid URL '" + completedURL.string() + "'.\n");
136
FrameLoadRequest frameRequest(
callingWindow
.document(), request, frameName);
150
if (newFrame->domWindow()->isInsecureScriptAccess(
callingWindow
, completedURL))
157
FrameLoadRequest request(
callingWindow
.document(), ResourceRequest(completedURL, referrer));
160
newFrame->navigationScheduler().scheduleLocationChange(
callingWindow
.document(), completedURL.string(), referrer, false);
CreateWindow.h
41
LocalDOMWindow&
callingWindow
, LocalFrame& firstFrame, LocalFrame& openerFrame, LocalDOMWindow::PrepareDialogFunction = 0, void* functionContext = 0);
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDocument.cpp
274
void HTMLDocument::write(LocalDOMWindow*
callingWindow
, const Vector<String>& text, ExceptionState& exceptionState)
276
ASSERT(
callingWindow
);
280
write(builder.toString(),
callingWindow
->document(), exceptionState);
283
void HTMLDocument::writeln(LocalDOMWindow*
callingWindow
, const Vector<String>& text, ExceptionState& exceptionState)
285
ASSERT(
callingWindow
);
289
writeln(builder.toString(),
callingWindow
->document(), exceptionState);
Completed in 313 milliseconds