summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/android/GLWebViewState.cpp
diff options
context:
space:
mode:
authorTeng-Hui Zhu <ztenghui@google.com>2010-12-06 17:00:39 -0800
committerTeng-Hui Zhu <ztenghui@google.com>2010-12-07 14:05:52 -0800
commitb173d79ebb480adfeff851a646df2b50d7def3b0 (patch)
tree255a0636b63a83b99776e058977e91c2cabc2b52 /WebCore/platform/graphics/android/GLWebViewState.cpp
parent005da0d75ff5e7e12d1e64834d24d4ba571a5ae8 (diff)
downloadexternal_webkit-b173d79ebb480adfeff851a646df2b50d7def3b0.zip
external_webkit-b173d79ebb480adfeff851a646df2b50d7def3b0.tar.gz
external_webkit-b173d79ebb480adfeff851a646df2b50d7def3b0.tar.bz2
Get rid of some Debug spew which is out of data
For bug : 3171575 Change-Id: I8736ba7e174a7ea8e4228bfbdacb8ca443828f99
Diffstat (limited to 'WebCore/platform/graphics/android/GLWebViewState.cpp')
-rw-r--r--WebCore/platform/graphics/android/GLWebViewState.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/WebCore/platform/graphics/android/GLWebViewState.cpp b/WebCore/platform/graphics/android/GLWebViewState.cpp
index 0795b4b..9bca91a 100644
--- a/WebCore/platform/graphics/android/GLWebViewState.cpp
+++ b/WebCore/platform/graphics/android/GLWebViewState.cpp
@@ -219,10 +219,9 @@ void GLWebViewState::setViewport(SkRect& viewport, float scale)
return;
m_viewport = viewport;
- XLOG("New VIEWPORT %.2f - %.2f %.2f - %.2f (w: %2.f h: %.2f scale: %.2f), nbw: %d nbh: %d",
+ XLOG("New VIEWPORT %.2f - %.2f %.2f - %.2f (w: %2.f h: %.2f scale: %.2f)",
m_viewport.fLeft, m_viewport.fTop, m_viewport.fRight, m_viewport.fBottom,
- m_viewport.width(), m_viewport.height(), scale,
- m_nbTilesWidth, m_nbTilesHeight);
+ m_viewport.width(), m_viewport.height(), scale);
const float invTileContentWidth = scale / TilesManager::tileWidth();
const float invTileContentHeight = scale / TilesManager::tileHeight();