Home
last modified time | relevance | path

Searched refs:mDIPScale (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
DAwLayoutSizer.java32 private double mDIPScale; field in AwLayoutSizer
64 mDIPScale = dipScale; in setDIPScale()
110 final int heightPix = (int) (heightCss * mPageScaleFactor * mDIPScale); in doUpdate()
143 int contentHeightPix = (int) (mContentHeightCss * mPageScaleFactor * mDIPScale); in onMeasure()
144 int contentWidthPix = (int) (mContentWidthCss * mPageScaleFactor * mDIPScale); in onMeasure()
DAwContents.java208 private final double mDIPScale; field in AwContents
573 mDIPScale = DeviceDisplayInfo.create(mContext).getDIPScale(); in AwContents()
575 mLayoutSizer.setDIPScale(mDIPScale); in AwContents()
598 mSettings.setDIPScale(mDIPScale); in AwContents()
765 nativeSetDipScale(mNativeAwContents, (float) mDIPScale); in setNewAwContents()
1571 return (float)(mPageScaleFactor * mDIPScale); in getScale()
2120 (float)(oldPageScaleFactor * mDIPScale),
2121 (float)(mPageScaleFactor * mDIPScale));
2321 (int) Math.round(event.getX(actionIndex) / mDIPScale),
2322 (int) Math.round(event.getY(actionIndex) / mDIPScale));
DAwSettings.java59 private double mDIPScale = 1.0; field in AwSettings
260 return mDIPScale; in getDIPScaleLocked()
265 mDIPScale = dipScale; in setDIPScale()