summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/android
diff options
context:
space:
mode:
authorAndrei Popescu <andreip@google.com>2009-11-17 12:31:18 +0000
committerAndrei Popescu <andreip@google.com>2009-11-17 12:31:18 +0000
commit4465d348a977f9f062b28957709a77613311647a (patch)
treee3b97e5fe83507f7d13fa235c396acf6246c667c /WebCore/platform/android
parent2a35006024d3c1a6cb14cfc5dd0d6ba487f4b3a1 (diff)
downloadexternal_webkit-4465d348a977f9f062b28957709a77613311647a.zip
external_webkit-4465d348a977f9f062b28957709a77613311647a.tar.gz
external_webkit-4465d348a977f9f062b28957709a77613311647a.tar.bz2
Update style after
https://bugs.webkit.org/show_bug.cgi?id=31423 landed.
Diffstat (limited to 'WebCore/platform/android')
-rw-r--r--WebCore/platform/android/ScrollViewAndroid.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/WebCore/platform/android/ScrollViewAndroid.cpp b/WebCore/platform/android/ScrollViewAndroid.cpp
index 9149deb..db20591 100644
--- a/WebCore/platform/android/ScrollViewAndroid.cpp
+++ b/WebCore/platform/android/ScrollViewAndroid.cpp
@@ -97,12 +97,9 @@ void ScrollView::platformRepaintContentRectangle(const IntRect &rect, bool now)
}
#ifdef ANDROID_CAPTURE_OFFSCREEN_PAINTS
-/*
- Compute the offscreen parts of the drawn rectangle by subtracting
- vis from rect. This can compute up to four rectangular slices.
-*/
-void ScrollView::platformOffscreenContentRectangle(const IntRect& vis,
- const IntRect& rect)
+// Compute the offscreen parts of the drawn rectangle by subtracting
+// vis from rect. This can compute up to four rectangular slices.
+void ScrollView::platformOffscreenContentRectangle(const IntRect& vis, const IntRect& rect)
{
SkRegion rectRgn = SkRegion(rect);
rectRgn.op(vis, SkRegion::kDifference_Op);