Home | History | Annotate | Download | only in src

Lines Matching defs:page

39 //   Page O------- Frame (m_mainFrame) O-------O FrameView
61 // and a reference to the main frame is kept by the Page.
103 #include "Page.h"
324 // Spools the printed page, a subrect of m_frame. Skip the scale step.
387 // We don't shrink the page (maybe we should ask the widget ??)
401 // Spools the printed page, a subrect of m_frame. Skip the scale step.
937 m_frame->page()->backForward()->setCurrentItem(currentItem.get());
941 m_frame->page()->goToItem(historyItem.get(),
970 // loaded page.
1043 return WebHistoryItem(m_frame->page()->backForward()->currentItem());
1407 float WebFrameImpl::getPrintPageShrink(int page)
1410 if (!m_printContext.get() || page < 0) {
1415 return m_printContext->getPageShrink(page);
1418 float WebFrameImpl::printPage(int page, WebCanvas* canvas)
1421 if (!m_printContext.get() || page < 0 || !frame() || !frame()->document()) {
1432 return m_printContext->spoolPage(gc, page);
1474 frame()->page()->unmarkAllTextMatches();
1510 // are mixed on a page: see https://bugs.webkit.org/show_bug.cgi?id=19127.
1532 // page and we just switch to searching in a new frame. Then we just
1593 frame()->page()->unmarkAllTextMatches();
1724 // don't want to spam too much if the page is extremely long, so if we
1928 RefPtr<Frame> frame = Frame::create(webViewImpl->page(), 0, &m_frameLoaderClient);
1951 m_frame->page(), ownerElement, &webframe->m_frameLoaderClient);
1978 // script in the page.
2000 m_frame->page()->inspectorController()->drawNodeHighlight(gc);
2017 Page* page = m_frame->page();
2018 ASSERT(page);
2019 ASSERT(page->mainFrame());
2021 bool isMainFrame = m_frame == page->mainFrame();
2078 return WebViewImpl::fromPage(m_frame->page());
2352 // the page are otherwise disabled.
2354 if (!m_frame->document() || !m_frame->page())