Home
last modified time | relevance | path

Searched refs:m_textZoomFactor (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/page/
DFrame.cpp166 , m_textZoomFactor(parentTextZoomFactor(this)) in Frame()
963 setPageAndTextZoomFactors(factor, m_textZoomFactor); in setPageZoomFactor()
973 if (m_pageZoomFactor == pageZoomFactor && m_textZoomFactor == textZoomFactor) in setPageAndTextZoomFactors()
1007 m_textZoomFactor = textZoomFactor; in setPageAndTextZoomFactors()
1012 child->setPageAndTextZoomFactors(m_pageZoomFactor, m_textZoomFactor); in setPageAndTextZoomFactors()
DFrame.h163 float textZoomFactor() const { return m_textZoomFactor; } in textZoomFactor()
243 float m_textZoomFactor; variable
/external/webkit/Source/WebKit2/UIProcess/
DWebPageProxy.cpp122 , m_textZoomFactor(1) in WebPageProxy()
1055 if (m_textZoomFactor == zoomFactor) in setTextZoomFactor()
1058 m_textZoomFactor = zoomFactor; in setTextZoomFactor()
1059 process()->send(Messages::WebPage::SetTextZoomFactor(m_textZoomFactor), m_pageID); in setTextZoomFactor()
1094 if (m_pageZoomFactor == pageZoomFactor && m_textZoomFactor == textZoomFactor) in setPageAndTextZoomFactors()
1098 m_textZoomFactor = textZoomFactor; in setPageAndTextZoomFactors()
1099 …process()->send(Messages::WebPage::SetPageAndTextZoomFactors(m_pageZoomFactor, m_textZoomFactor), … in setPageAndTextZoomFactors()
DWebPageProxy.h326 …double textZoomFactor() const { return m_mainFrameHasCustomRepresentation ? 1 : m_textZoomFactor; } in textZoomFactor()
768 double m_textZoomFactor; variable