summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2012-09-13 13:12:15 -0700
committerJohn Reck <jreck@google.com>2012-09-13 13:12:15 -0700
commit6fc2164684c1460da41190fce3b8ae62f8e36188 (patch)
tree6bcdd358bded96f595530cec1a314a025a3ce8e0
parenta3bef91fa82b756b62aceb8ee1fa431fbad8f649 (diff)
downloadexternal_webkit-6fc2164684c1460da41190fce3b8ae62f8e36188.zip
external_webkit-6fc2164684c1460da41190fce3b8ae62f8e36188.tar.gz
external_webkit-6fc2164684c1460da41190fce3b8ae62f8e36188.tar.bz2
Paint into the right PicturePile
Bug: 7163457 Oops Change-Id: I08d25259810faa3983e6f84165b5ae9f286ece3f
-rw-r--r--Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp b/Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp
index 9cb81e6..32a3c05 100644
--- a/Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp
+++ b/Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp
@@ -784,7 +784,7 @@ bool GraphicsLayerAndroid::repaint()
GraphicsLayerAndroid* replicatedLayer = static_cast<GraphicsLayerAndroid*>(replicaLayer());
if (replicatedLayer->maskLayer()) {
GraphicsLayerAndroid* mask = static_cast<GraphicsLayerAndroid*>(replicatedLayer->maskLayer());
- mask->paintContext(mask->m_contentLayer, m_contentLayerContent);
+ mask->paintContext(mask->m_contentLayer, mask->m_contentLayerContent);
}
}