summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMangesh Ghiware <mghiware@google.com>2012-01-12 13:31:01 -0800
committerMangesh Ghiware <mghiware@google.com>2012-01-12 13:31:01 -0800
commit8b5da595a35002be0dc5373601efcbd28b569b59 (patch)
tree0f14e8ae31abcc1746f5a71dfd9396f321d4e2e1
parent73d556e0cf543c9fb1b0fcc39a9db25937ae0573 (diff)
downloadexternal_webkit-8b5da595a35002be0dc5373601efcbd28b569b59.zip
external_webkit-8b5da595a35002be0dc5373601efcbd28b569b59.tar.gz
external_webkit-8b5da595a35002be0dc5373601efcbd28b569b59.tar.bz2
Fix use of DBG_SET_LOG in WebViewCore.
This fixes the debug build. Change-Id: I49b932ec26152d8ade19230e3be0f6a25eb8068b
-rw-r--r--Source/WebKit/android/jni/WebViewCore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebKit/android/jni/WebViewCore.cpp b/Source/WebKit/android/jni/WebViewCore.cpp
index e5ef154..ba40898 100644
--- a/Source/WebKit/android/jni/WebViewCore.cpp
+++ b/Source/WebKit/android/jni/WebViewCore.cpp
@@ -938,7 +938,7 @@ BaseLayerAndroid* WebViewCore::recordContent(SkRegion* region, SkIPoint* point)
DBG_SET_LOG("start");
// If there is a pending style recalculation, just return.
if (m_mainFrame->document()->isPendingStyleRecalc()) {
- DBG_SET_LOGD("recordContent: pending style recalc, ignoring.");
+ DBG_SET_LOG("recordContent: pending style recalc, ignoring.");
return 0;
}
float progress = (float) m_mainFrame->page()->progress()->estimatedProgress();