/external/webkit/Source/WebKit2/UIProcess/API/qt/ |
qwkpage.h | 110 qreal textZoomFactor() const; 114 void setPageAndTextZoomFactors(qreal pageZoomFactor, qreal textZoomFactor);
|
qwkpage.cpp | 660 qreal QWKPage::textZoomFactor() const 680 void QWKPage::setPageAndTextZoomFactors(qreal pageZoomFactor, qreal textZoomFactor) 682 WKPageSetPageAndTextZoomFactors(pageRef(), pageZoomFactor, textZoomFactor);
|
/external/webkit/Source/WebKit2/UIProcess/API/C/ |
WKPage.cpp | 243 return toImpl(pageRef)->textZoomFactor(); 266 void WKPageSetPageAndTextZoomFactors(WKPageRef pageRef, double pageZoomFactor, double textZoomFactor) 268 toImpl(pageRef)->setPageAndTextZoomFactors(pageZoomFactor, textZoomFactor);
|
WKPage.h | 326 WK_EXPORT void WKPageSetPageAndTextZoomFactors(WKPageRef page, double pageZoomFactor, double textZoomFactor);
|
/external/webkit/Source/WebCore/page/ |
Frame.h | 163 float textZoomFactor() const { return m_textZoomFactor; } 164 void setPageAndTextZoomFactors(float pageZoomFactor, float textZoomFactor);
|
Frame.cpp | 150 return parent->textZoomFactor(); 971 void Frame::setPageAndTextZoomFactors(float pageZoomFactor, float textZoomFactor) 973 if (m_pageZoomFactor == pageZoomFactor && m_textZoomFactor == textZoomFactor) 1007 m_textZoomFactor = textZoomFactor; [all...] |
/external/webkit/Tools/MiniBrowser/qt/ |
BrowserWindow.cpp | 264 m_currentZoom = page()->textZoomFactor(); 279 m_currentZoom = page()->textZoomFactor();
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
WKBundlePage.cpp | 182 return toImpl(pageRef)->textZoomFactor();
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
WebPage.messages.in | 106 SetPageAndTextZoomFactors(double pageZoomFactor, double textZoomFactor)
|
WebPage.h | 227 double textZoomFactor() const; 231 void setPageAndTextZoomFactors(double pageZoomFactor, double textZoomFactor);
|
WebPage.cpp | 660 double WebPage::textZoomFactor() const 665 return frame->textZoomFactor(); 692 void WebPage::setPageAndTextZoomFactors(double pageZoomFactor, double textZoomFactor) 697 return frame->setPageAndTextZoomFactors(static_cast<float>(pageZoomFactor), static_cast<float>(textZoomFactor)); [all...] |
/external/webkit/Source/WebKit2/UIProcess/ |
WebPageProxy.h | 326 double textZoomFactor() const { return m_mainFrameHasCustomRepresentation ? 1 : m_textZoomFactor; } 330 void setPageAndTextZoomFactors(double pageZoomFactor, double textZoomFactor); [all...] |
WebPageProxy.cpp | [all...] |
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
FrameLoaderClientAndroid.cpp | [all...] |
/external/webkit/Source/WebKit/android/jni/ |
WebSettings.cpp | 346 if (pFrame->textZoomFactor() != zoomFactor)
|
/external/webkit/Source/WebKit/efl/ewk/ |
ewk_frame.cpp | 1030 return sd->frame->textZoomFactor(); [all...] |
/external/webkit/Source/WebKit/qt/Api/ |
qwebframe.cpp | [all...] |
/external/webkit/Source/WebKit/gtk/webkit/ |
webkitwebview.cpp | [all...] |
/external/webkit/Source/WebCore/css/ |
CSSStyleSelector.cpp | [all...] |
/external/webkit/Source/WebKit2/ |
ChangeLog-2011-02-16 | [all...] |