HomeSort by relevance Sort by last modified time
    Searched defs:textZoomFactor (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebCore/page/
Frame.h 163 float textZoomFactor() const { return m_textZoomFactor; }
164 void setPageAndTextZoomFactors(float pageZoomFactor, float textZoomFactor);
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkpage.cpp 660 qreal QWKPage::textZoomFactor() const
680 void QWKPage::setPageAndTextZoomFactors(qreal pageZoomFactor, qreal textZoomFactor)
682 WKPageSetPageAndTextZoomFactors(pageRef(), pageZoomFactor, textZoomFactor);
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.h 326 double textZoomFactor() const { return m_mainFrameHasCustomRepresentation ? 1 : m_textZoomFactor; }
330 void setPageAndTextZoomFactors(double pageZoomFactor, double textZoomFactor);
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp 660 double WebPage::textZoomFactor() const
665 return frame->textZoomFactor();
692 void WebPage::setPageAndTextZoomFactors(double pageZoomFactor, double textZoomFactor)
697 return frame->setPageAndTextZoomFactors(static_cast<float>(pageZoomFactor), static_cast<float>(textZoomFactor));
    [all...]

Completed in 901 milliseconds