| Index: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| index 17fe5703932fcf72b6b5c63ff787e3f9f5a6198b..bab2d3cb04aa1b47c4e04c8e6e9bedd71a4ae98c 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| @@ -2452,7 +2452,7 @@ public class ContentViewCore
|
| float contentWidth, float contentHeight,
|
| float viewportWidth, float viewportHeight,
|
| float controlsOffsetYCss, float contentOffsetYCss,
|
| - float overdrawBottomHeightCss) {
|
| + float overdrawBottomHeightCss, boolean allowDelayedResize) {
|
| TraceEvent.instant("ContentViewCore:updateFrameInfo");
|
| // Adjust contentWidth/Height to be always at least as big as
|
| // the actual viewport (as set by onSizeChanged).
|
| @@ -2509,7 +2509,8 @@ public class ContentViewCore
|
| final float controlsOffsetPix = controlsOffsetYCss * deviceScale;
|
| final float overdrawBottomHeightPix = overdrawBottomHeightCss * deviceScale;
|
| getContentViewClient().onOffsetsForFullscreenChanged(
|
| - controlsOffsetPix, contentOffsetYPix, overdrawBottomHeightPix);
|
| + controlsOffsetPix, contentOffsetYPix, overdrawBottomHeightPix,
|
| + allowDelayedResize);
|
|
|
| mPendingRendererFrame = true;
|
| if (mBrowserAccessibilityManager != null) {
|
|
|