summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp
diff options
context:
space:
mode:
authorChris Craik <ccraik@google.com>2012-04-05 14:22:36 -0700
committerChris Craik <ccraik@google.com>2012-04-05 14:54:00 -0700
commit7b4a179bde698a856bed54a680438a9db3ff0566 (patch)
tree312a96159e798d027b540073bdfa682b123b4025 /Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp
parentd01f8866730e5ebe8609f82f95cf281432460607 (diff)
downloadexternal_webkit-7b4a179bde698a856bed54a680438a9db3ff0566.zip
external_webkit-7b4a179bde698a856bed54a680438a9db3ff0566.tar.gz
external_webkit-7b4a179bde698a856bed54a680438a9db3ff0566.tar.bz2
minor cleanup
Change-Id: Ib873df1bb3e7a76a5a34acc89e4deff217e698e0
Diffstat (limited to 'Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp')
-rw-r--r--Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp b/Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp
index d62f88b..be9f458 100644
--- a/Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp
+++ b/Source/WebCore/platform/graphics/android/GraphicsLayerAndroid.cpp
@@ -296,11 +296,10 @@ void GraphicsLayerAndroid::setPosition(const FloatPoint& point)
GraphicsLayer::setPosition(point);
-#ifdef LAYER_DEBUG_2
ALOGV("(%x) setPosition(%.2f,%.2f) pos(%.2f, %.2f) anchor(%.2f,%.2f) size(%.2f, %.2f)",
this, point.x(), point.y(), m_position.x(), m_position.y(),
m_anchorPoint.x(), m_anchorPoint.y(), m_size.width(), m_size.height());
-#endif
+
m_contentLayer->setPosition(point.x(), point.y());
askForSync();
}