Searched refs:textZoomFactor (Results 1 – 8 of 8) sorted by relevance
136 float textZoomFactor() const { return m_textZoomFactor; } in textZoomFactor() function137 void setPageAndTextZoomFactors(float pageZoomFactor, float textZoomFactor);
89 return toLocalFrame(parent)->textZoomFactor(); in parentTextZoomFactor()528 void LocalFrame::setPageAndTextZoomFactors(float pageZoomFactor, float textZoomFactor) in setPageAndTextZoomFactors() argument530 if (m_pageZoomFactor == pageZoomFactor && m_textZoomFactor == textZoomFactor) in setPageAndTextZoomFactors()558 m_textZoomFactor = textZoomFactor; in setPageAndTextZoomFactors()
225 virtual float textZoomFactor() = 0;
339 zoomFactor *= frame->textZoomFactor(); in getComputedSizeFromSpecifiedSize()
305 multiplier *= frame->textZoomFactor(); in applyValueCSSPropertyLineHeight()314 multiplier *= frame->textZoomFactor(); in applyValueCSSPropertyLineHeight()
191 virtual float textZoomFactor() OVERRIDE;
2910 float WebViewImpl::textZoomFactor() in textZoomFactor() function in blink::WebViewImpl2912 return mainFrameImpl()->frame()->textZoomFactor(); in textZoomFactor()2915 float WebViewImpl::setTextZoomFactor(float textZoomFactor) in setTextZoomFactor() argument2921 frame->setTextZoomFactor(textZoomFactor); in setTextZoomFactor()2923 return textZoomFactor; in setTextZoomFactor()
1428 view_->setTextZoomFactor(view_->textZoomFactor() * 1.2f); in TextZoomIn()1432 view_->setTextZoomFactor(view_->textZoomFactor() / 1.2f); in TextZoomOut()