Skip to content

Commit 644b7d9

Browse files
committed
disable webkit paint pausing
Temporary measure for investigating potentially related bug:5964385 Change-Id: I6eb0ba25991bdf7eab506b51a9eae71e9ddd436b
1 parent 9090a7a commit 644b7d9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

core/java/android/webkit/WebView.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4803,7 +4803,9 @@ void setBaseLayer(int layer, Region invalRegion, boolean showVisualIndicator,
48034803
if (layer == 0 || isPictureAfterFirstLayout) {
48044804
mWebViewCore.resumeWebKitDraw();
48054805
} else if (queueFull) {
4806-
mWebViewCore.pauseWebKitDraw();
4806+
// temporarily disable webkit draw throttling
4807+
// TODO: re-enable
4808+
// mWebViewCore.pauseWebKitDraw();
48074809
}
48084810

48094811
if (mHTML5VideoViewProxy != null) {

0 commit comments

Comments
 (0)