summaryrefslogtreecommitdiffstats
path: root/WebCore/platform
diff options
context:
space:
mode:
authorNicolas Roard <nicolasroard@google.com>2011-03-09 16:12:54 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-03-09 16:12:54 -0800
commit95cb21b0cde2a64281360f9e45f31f049e583273 (patch)
tree7632457f85432ac7854e898b34a2951850f1bd27 /WebCore/platform
parent55550b6a4e21f05e01e48dfa7674bdad8f17c3d1 (diff)
parentc15781f45f0d19a925be7fd73bd10c318562db70 (diff)
downloadexternal_webkit-95cb21b0cde2a64281360f9e45f31f049e583273.zip
external_webkit-95cb21b0cde2a64281360f9e45f31f049e583273.tar.gz
external_webkit-95cb21b0cde2a64281360f9e45f31f049e583273.tar.bz2
Merge "Fix for gmail messages not showing after the first one. We were not resetting the unusable state (set by the clearView() function) when receiving new content..." into honeycomb-mr1
Diffstat (limited to 'WebCore/platform')
-rw-r--r--WebCore/platform/graphics/android/BaseTile.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/WebCore/platform/graphics/android/BaseTile.cpp b/WebCore/platform/graphics/android/BaseTile.cpp
index 47be13b..3da0b3a 100644
--- a/WebCore/platform/graphics/android/BaseTile.cpp
+++ b/WebCore/platform/graphics/android/BaseTile.cpp
@@ -381,6 +381,9 @@ void BaseTile::paintBitmap()
if (!m_currentDirtyArea->isEmpty())
m_dirty = true;
+ if (!m_dirty)
+ m_usable = true;
+
m_painting = false;
m_atomicSync.unlock();