summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Source')
-rw-r--r--Source/WebKit/android/nav/WebView.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/Source/WebKit/android/nav/WebView.cpp b/Source/WebKit/android/nav/WebView.cpp
index 1e84a12..a78392b 100644
--- a/Source/WebKit/android/nav/WebView.cpp
+++ b/Source/WebKit/android/nav/WebView.cpp
@@ -306,14 +306,10 @@ void draw(SkCanvas* canvas, SkColor bgColor, DrawExtras extras)
// draw the content of the base layer first
LayerContent* content = m_baseLayer->content();
int sc = canvas->save(SkCanvas::kClip_SaveFlag);
- int contentWidth = 0;
- int contentHeight = 0;
if (content) {
- contentWidth = content->width();
- contentHeight = content->height();
+ canvas->clipRect(SkRect::MakeLTRB(0, 0, content->width(), content->height()),
+ SkRegion::kDifference_Op);
}
- canvas->clipRect(SkRect::MakeLTRB(0, 0, contentWidth, contentHeight),
- SkRegion::kDifference_Op);
Color c = m_baseLayer->getBackgroundColor();
canvas->drawColor(SkColorSetARGBInline(c.alpha(), c.red(), c.green(), c.blue()));
canvas->restoreToCount(sc);