Home | History | Annotate | Download | only in src

Lines Matching full:frame

148     const Frame* frame = m_webView->focusedWebCoreFrame();
149 if (!frame)
152 Document* doc = frame->document();
211 Frame* frame, const FrameLoadRequest& r, const WindowFeatures& features)
217 m_webView->client()->createView(WebFrameImpl::fromFrame(frame)));
369 bool ChromeClientImpl::runBeforeUnloadConfirmPanel(const String& message, Frame* frame)
373 WebFrameImpl::fromFrame(frame), message);
390 // Although a Frame is passed in, we don't actually use it, since we
392 void ChromeClientImpl::runJavaScriptAlert(Frame* frame, const String& message)
401 WebFrameImpl::fromFrame(frame), message);
406 bool ChromeClientImpl::runJavaScriptConfirm(Frame* frame, const String& message)
410 WebFrameImpl::fromFrame(frame), message);
416 bool ChromeClientImpl::runJavaScriptPrompt(Frame* frame,
424 WebFrameImpl::fromFrame(frame),
505 void ChromeClientImpl::contentsSizeChanged(Frame* frame, const IntSize& size) const
507 WebFrameImpl* webframe = WebFrameImpl::fromFrame(frame);
539 void ChromeClientImpl::print(Frame* frame)
542 m_webView->client()->printPage(WebFrameImpl::fromFrame(frame));
545 void ChromeClientImpl::exceededDatabaseQuota(Frame* frame, const String& databaseName)
557 void ChromeClientImpl::runOpenPanel(Frame* frame, PassRefPtr<FileChooser> fileChooser)
623 WebFrameImpl* webframe = WebFrameImpl::fromFrame(node->document()->frame());