Searched defs:heightCss (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DExternalVideoSurfaceContainerTest.java40 int callCount, float widthCss, float heightCss) throws Exception {
47 && Math.abs(rect.height() - heightCss) < epsilon) {
39 waitForVideoSizeChangeTo(OnExternalVideoSurfacePositionChanged helper, int callCount, float widthCss, float heightCss) argument
H A DAndroidViewIntegrationTest.java42 public void onContentSizeChanged(int widthCss, int heightCss) { argument
44 mHeight = heightCss;
55 public void onContentSizeChanged(int widthCss, int heightCss) { argument
56 super.onContentSizeChanged(widthCss, heightCss);
58 mOnContentSizeChangedHelper.onContentSizeChanged(widthCss, heightCss);
205 private String makeHtmlPageOfSize(int widthCss, int heightCss, boolean heightPercent) { argument
214 "height:" + heightCss + "px; " +
225 int widthCss, int heightCss) throws Exception {
229 if ((heightCss == -1 || helper.getHeight() == heightCss)
224 waitForContentSizeToChangeTo(OnContentSizeChangedHelper helper, int callCount, int widthCss, int heightCss) argument
239 loadPageOfSizeAndWaitForSizeChange(AwContents awContents, OnContentSizeChangedHelper helper, int widthCss, int heightCss, boolean heightPercent) argument
[all...]
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwLayoutSizer.java93 public void onContentSizeChanged(int widthCss, int heightCss) { argument
94 doUpdate(widthCss, heightCss, mPageScaleFactor);
106 private void doUpdate(int widthCss, int heightCss, float pageScaleFactor) { argument
110 final int heightPix = (int) (heightCss * mPageScaleFactor * mDIPScale);
117 (mContentHeightCss != heightCss && contentHeightChangeMeaningful) ||
121 mContentHeightCss = heightCss;
H A DAwContents.java2056 private void onWebLayoutContentsSizeChanged(int widthCss, int heightCss) { argument
2058 mLayoutSizer.onContentSizeChanged(widthCss, heightCss);

Completed in 203 milliseconds