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

/external/webkit/Source/WebCore/page/
H A DFrame.h163 float textZoomFactor() const { return m_textZoomFactor; }
243 float m_textZoomFactor; member in class:WebCore::Frame
H A DFrame.cpp162 , m_textZoomFactor(parentTextZoomFactor(this))
959 setPageAndTextZoomFactors(factor, m_textZoomFactor);
969 if (m_pageZoomFactor == pageZoomFactor && m_textZoomFactor == textZoomFactor)
1003 m_textZoomFactor = textZoomFactor;
1008 child->setPageAndTextZoomFactors(m_pageZoomFactor, m_textZoomFactor);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageProxy.h326 double textZoomFactor() const { return m_mainFrameHasCustomRepresentation ? 1 : m_textZoomFactor; }
768 double m_textZoomFactor; member in class:WebKit::WebPageProxy
H A DWebPageProxy.cpp122 , m_textZoomFactor(1)
1055 if (m_textZoomFactor == zoomFactor)
1058 m_textZoomFactor = zoomFactor;
1059 process()->send(Messages::WebPage::SetTextZoomFactor(m_textZoomFactor), m_pageID);
1094 if (m_pageZoomFactor == pageZoomFactor && m_textZoomFactor == textZoomFactor)
1098 m_textZoomFactor = textZoomFactor;
1099 process()->send(Messages::WebPage::SetPageAndTextZoomFactors(m_pageZoomFactor, m_textZoomFactor), m_pageID);

Completed in 758 milliseconds