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

  /external/webkit/WebCore/bindings/js/
JSDocumentCustom.cpp 86 Frame* activeFrame = asJSDOMWindow(exec->dynamicGlobalObject())->impl()->frame();
87 if (activeFrame)
88 str = activeFrame->document()->completeURL(str).string();
90 bool userGesture = activeFrame->script()->processingUserGesture(currentWorld(exec));
91 frame->redirectScheduler()->scheduleLocationChange(str, activeFrame->loader()->outgoingReferrer(), !activeFrame->script()->anyPageIsProcessingUserGesture(), false, userGesture);
JSHTMLFormElementCustom.cpp 66 Frame* activeFrame = asJSDOMWindow(exec->dynamicGlobalObject())->impl()->frame();
67 if (!activeFrame)
69 static_cast<HTMLFormElement*>(impl())->submit(activeFrame);
JSDOMWindowCustom.cpp 721 static bool domWindowAllowPopUp(Frame* activeFrame, ExecState* exec)
723 ASSERT(activeFrame);
724 if (activeFrame->script()->processingUserGesture(currentWorld(exec)))
726 return DOMWindow::allowPopUp(activeFrame);
    [all...]
  /external/webkit/WebCore/bindings/v8/
ScriptController.cpp 155 Frame* activeFrame = V8Proxy::retrieveFrameForEnteredContext();
157 if (!activeFrame)
160 V8Proxy* activeProxy = activeFrame->script()->proxy();
163 v8::Handle<v8::Context> v8Context = V8Proxy::mainWorldContext(activeFrame);
  /external/webkit/WebCore/page/
DOMWindow.cpp 342 bool DOMWindow::allowPopUp(Frame* activeFrame)
344 ASSERT(activeFrame);
345 Settings* settings = activeFrame->settings();
    [all...]
DOMWindow.h 112 static bool allowPopUp(Frame* activeFrame);

Completed in 769 milliseconds