diff options
author | Derek Sollenberger <derek@android.com> | 2012-01-31 14:04:06 -0500 |
---|---|---|
committer | Derek Sollenberger <derek@android.com> | 2012-01-31 14:07:30 -0500 |
commit | 2857538e8cd8c752b06ee75dd039791a186455b3 (patch) | |
tree | 8cb2c1d6380b090cdbe9e17408323f64931ada26 /Source/WebKit/android/nav/WebView.cpp | |
parent | 0ab06914e1fb967121601f35b3e25065723d6d35 (diff) | |
download | external_webkit-2857538e8cd8c752b06ee75dd039791a186455b3.zip external_webkit-2857538e8cd8c752b06ee75dd039791a186455b3.tar.gz external_webkit-2857538e8cd8c752b06ee75dd039791a186455b3.tar.bz2 |
Skia API changes as a result of an update to the Skia library.
These changes are required to work with r3022 of Skia
Change-Id: I4d4a13bad9acc54934bbb46bdfc08ee424c7a33a
Diffstat (limited to 'Source/WebKit/android/nav/WebView.cpp')
-rw-r--r-- | Source/WebKit/android/nav/WebView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebKit/android/nav/WebView.cpp b/Source/WebKit/android/nav/WebView.cpp index 76f0fb8..7cb41d9 100644 --- a/Source/WebKit/android/nav/WebView.cpp +++ b/Source/WebKit/android/nav/WebView.cpp @@ -503,7 +503,7 @@ bool drawGL(WebCore::IntRect& viewRect, WebCore::IntRect* invalRect, // Make sure we have valid coordinates. We might not have valid coords // if the zoom manager is still initializing. We will be redrawn // once the correct scale is set - if (!m_visibleRect.hasValidCoordinates()) + if (!m_visibleRect.isFinite()) return false; bool treesSwapped = false; bool newTreeHasAnim = false; |