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

  /external/chromium_org/third_party/WebKit/Source/core/page/
Frame.h 134 float textZoomFactor() const { return m_textZoomFactor; }
135 void setPageAndTextZoomFactors(float pageZoomFactor, float textZoomFactor);
Frame.cpp 97 return parent->textZoomFactor();
534 void Frame::setPageAndTextZoomFactors(float pageZoomFactor, float textZoomFactor)
536 if (m_pageZoomFactor == pageZoomFactor && m_textZoomFactor == textZoomFactor)
564 m_textZoomFactor = textZoomFactor;
  /external/chromium_org/third_party/WebKit/Source/web/
WebDevToolsAgentImpl.cpp 204 void setDeviceMetrics(int width, int height, float textZoomFactor, bool fitWindow)
213 m_webView->setTextZoomFactor(textZoomFactor);
234 frame->setTextZoomFactor(m_webView->textZoomFactor());
239 frame->setPageAndTextZoomFactors(factor, m_webView->textZoomFactor());
WebViewImpl.h 227 virtual float textZoomFactor();
    [all...]
WebViewImpl.cpp     [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebView.h 248 virtual float textZoomFactor() = 0;
250 // Scales the text in the page by a factor of textZoomFactor.
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FontBuilder.cpp 527 zoomFactor *= frame->textZoomFactor();
StyleBuilderCustom.cpp 279 multiplier *= frame->textZoomFactor();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
EventSender.cpp 758 webview()->setTextZoomFactor(webview()->textZoomFactor() * 1.2f);
764 webview()->setTextZoomFactor(webview()->textZoomFactor() / 1.2f);
    [all...]

Completed in 1165 milliseconds