diff options
author | Derek Sollenberger <derek@android.com> | 2012-02-06 13:38:24 -0800 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2012-02-06 13:38:24 -0800 |
commit | 75a0da9a16b6d086bf9a90620160e32286630179 (patch) | |
tree | c67c99683b711874060aa6b7ff073142ce4ea899 /Source/WebKit | |
parent | 9d7bc9eaf8882a80d7fb8dd157088d2a436766fe (diff) | |
parent | 2857538e8cd8c752b06ee75dd039791a186455b3 (diff) | |
download | external_webkit-75a0da9a16b6d086bf9a90620160e32286630179.zip external_webkit-75a0da9a16b6d086bf9a90620160e32286630179.tar.gz external_webkit-75a0da9a16b6d086bf9a90620160e32286630179.tar.bz2 |
am 2857538e: Skia API changes as a result of an update to the Skia library.
* commit '2857538e8cd8c752b06ee75dd039791a186455b3':
Skia API changes as a result of an update to the Skia library.
Diffstat (limited to 'Source/WebKit')
-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; |