summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/java/android/webkit/WebView.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java
index b13fc75..d29d6f3 100644
--- a/core/java/android/webkit/WebView.java
+++ b/core/java/android/webkit/WebView.java
@@ -3136,7 +3136,8 @@ public class WebView extends AbsoluteLayout
}
private void drawExtras(Canvas canvas, int extras) {
- if (mNativeClass == 0) return;
+ // If mNativeClass is 0, we should not reach here, so we do not
+ // need to check it again.
// Currently for each draw we compute the animation values;
// We may in the future decide to do that independently.
if (nativeEvaluateLayersAnimations()) {
@@ -3153,7 +3154,6 @@ public class WebView extends AbsoluteLayout
if (mDrawHistory) {
canvas.scale(mActualScale, mActualScale);
canvas.drawPicture(mHistoryPicture);
- drawExtras(canvas, DRAW_EXTRAS_NONE);
return;
}