HomeSort by relevance Sort by last modified time
    Searched refs:activeWindow (Results 1 - 20 of 20) sorted by null

  /external/webkit/Source/WebCore/bindings/generic/
BindingSecurityBase.cpp 76 bool BindingSecurityBase::canAccess(DOMWindow* activeWindow,
83 if (activeWindow == targetWindow)
86 if (!activeWindow)
89 const SecurityOrigin* activeSecurityOrigin = activeWindow->securityOrigin();
102 if (targetSecurityOrigin->isEmpty() && activeWindow->frame() == targetWindow->frame())
BindingSecurity.h 81 DOMWindow* activeWindow = state->activeWindow();
82 return canAccess(activeWindow, targetWindow);
  /external/webkit/Source/WebCore/page/
Location.h 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* firstWindow, ExceptionCode&);
60 void setHost(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow);
62 void setHostname(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow);
64 void setPort(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow);
66 void setPathname(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow);
68 void setSearch(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow);
    [all...]
Location.cpp 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)
    [all...]
DOMWindow.h 132 void setLocation(const String& location, DOMWindow* activeWindow, DOMWindow* firstWindow,
146 DOMWindow* activeWindow, DOMWindow* firstWindow);
150 DOMWindow* activeWindow, DOMWindow* firstWindow, PrepareDialogFunction, void* functionContext);
224 String crossDomainAccessErrorMessage(DOMWindow* activeWindow);
448 DOMWindow* activeWindow, Frame* firstFrame, Frame* openerFrame,
450 bool isInsecureScriptAccess(DOMWindow* activeWindow, const String& urlString);
DOMWindow.cpp     [all...]
  /external/webkit/Source/WebCore/bindings/v8/specialization/
V8BindingState.h 52 DOMWindow* activeWindow();
V8BindingState.cpp 47 DOMWindow* State<V8Binding>::activeWindow()
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8LocationCustom.cpp 60 impl->setHash(hash, state->activeWindow(), state->firstWindow());
72 impl->setHost(host, state->activeWindow(), state->firstWindow());
84 impl->setHostname(hostname, state->activeWindow(), state->firstWindow());
96 impl->setHref(href, state->activeWindow(), state->firstWindow());
108 impl->setPathname(pathname, state->activeWindow(), state->firstWindow());
120 impl->setPort(port, state->activeWindow(), state->firstWindow());
133 impl->setProtocol(protocol, state->activeWindow(), state->firstWindow(), ec);
147 impl->setSearch(search, state->activeWindow(), state->firstWindow());
211 impl->reload(state->activeWindow());
224 impl->replace(urlString, state->activeWindow(), state->firstWindow())
    [all...]
V8DOMWindowCustom.cpp 194 DOMWindow* activeWindow = state->activeWindow();
195 if (!activeWindow)
202 imp->setLocation(toWebCoreString(value), activeWindow, firstWindow);
426 DOMWindow* activeWindow = state->activeWindow();
435 impl->showModalDialog(urlString, dialogFeaturesString, activeWindow, firstWindow, setUpDialog, &handler);
447 DOMWindow* activeWindow = state->activeWindow();
455 RefPtr<DOMWindow> openedWindow = impl->open(urlString, frameName, windowFeaturesString, activeWindow, firstWindow)
    [all...]
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.cpp 194 HWND activeWindow;
262 activeWindow = ::GetActiveWindow();
263 if (activeWindow != hostWindow && !::IsChild(activeWindow, hostWindow))
  /external/webkit/Source/WebKit2/UIProcess/win/
WebPopupMenuProxyWin.cpp 253 HWND activeWindow;
315 activeWindow = ::GetActiveWindow();
316 if (activeWindow != hostWindow && !::IsChild(activeWindow, hostWindow))
WebView.cpp 958 HWND activeWindow = ::GetActiveWindow();
959 return (activeWindow && m_topLevelParentWindow == findTopLevelParentWindow(activeWindow));
    [all...]
  /external/webkit/Tools/QtTestBrowser/
webpage.cpp 135 QDialog* dialog = new QDialog(QApplication::activeWindow());
  /external/webkit/Source/WebKit/qt/tests/qgraphicswebview/
tst_qgraphicswebview.cpp 392 QTRY_COMPARE(QApplication::activeWindow(), activeView);
445 QTRY_COMPARE(QApplication::activeWindow(), activeView);
  /external/webkit/Source/WebKit/qt/tests/qwebview/
tst_qwebview.cpp 395 QTRY_COMPARE(QApplication::activeWindow(), activeView);
442 QTRY_COMPARE(QApplication::activeWindow(), activeView);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.ui.sdk.scheduler_1.0.0.v20100507-1815.jar 
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar 
  /external/webkit/Source/WebCore/bindings/v8/
V8DOMWindowShell.cpp 634 window->setLocation(locationString, state->activeWindow(), state->firstWindow());
  /external/webkit/Source/WebKit/win/
WebView.cpp     [all...]

Completed in 2146 milliseconds