Home
last modified time | relevance | path

Searched refs:textZoomFactor (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/frame/
DLocalFrame.h136 float textZoomFactor() const { return m_textZoomFactor; } in textZoomFactor() function
137 void setPageAndTextZoomFactors(float pageZoomFactor, float textZoomFactor);
DLocalFrame.cpp89 return toLocalFrame(parent)->textZoomFactor(); in parentTextZoomFactor()
528 void LocalFrame::setPageAndTextZoomFactors(float pageZoomFactor, float textZoomFactor) in setPageAndTextZoomFactors() argument
530 if (m_pageZoomFactor == pageZoomFactor && m_textZoomFactor == textZoomFactor) in setPageAndTextZoomFactors()
558 m_textZoomFactor = textZoomFactor; in setPageAndTextZoomFactors()
/external/chromium_org/third_party/WebKit/public/web/
DWebView.h225 virtual float textZoomFactor() = 0;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DFontBuilder.cpp339 zoomFactor *= frame->textZoomFactor(); in getComputedSizeFromSpecifiedSize()
DStyleBuilderCustom.cpp305 multiplier *= frame->textZoomFactor(); in applyValueCSSPropertyLineHeight()
314 multiplier *= frame->textZoomFactor(); in applyValueCSSPropertyLineHeight()
/external/chromium_org/third_party/WebKit/Source/web/
DWebViewImpl.h191 virtual float textZoomFactor() OVERRIDE;
DWebViewImpl.cpp2910 float WebViewImpl::textZoomFactor() in textZoomFactor() function in blink::WebViewImpl
2912 return mainFrameImpl()->frame()->textZoomFactor(); in textZoomFactor()
2915 float WebViewImpl::setTextZoomFactor(float textZoomFactor) in setTextZoomFactor() argument
2921 frame->setTextZoomFactor(textZoomFactor); in setTextZoomFactor()
2923 return textZoomFactor; in setTextZoomFactor()
/external/chromium_org/content/shell/renderer/test_runner/
Devent_sender.cc1428 view_->setTextZoomFactor(view_->textZoomFactor() * 1.2f); in TextZoomIn()
1432 view_->setTextZoomFactor(view_->textZoomFactor() / 1.2f); in TextZoomOut()