summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-12-08 06:59:01 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-12-08 06:59:01 -0800
commit4cf840fc0046a79568cb800af5d85d529c1411b2 (patch)
tree0671500d00913c7c8491a91221368dab913fcd7a
parentdcab27c390251a3b534b8eeb1fa5b8301686b1ab (diff)
parenta8a49e0d3b0a6a0470068dd0e4a647f116aea95b (diff)
downloadexternal_webkit-4cf840fc0046a79568cb800af5d85d529c1411b2.zip
external_webkit-4cf840fc0046a79568cb800af5d85d529c1411b2.tar.gz
external_webkit-4cf840fc0046a79568cb800af5d85d529c1411b2.tar.bz2
Merge change Ia8a49e0d into eclair-mr2
* changes: fix debugging output
-rw-r--r--WebKit/android/nav/CachedInput.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/WebKit/android/nav/CachedInput.cpp b/WebKit/android/nav/CachedInput.cpp
index 0625ab8..858402f 100644
--- a/WebKit/android/nav/CachedInput.cpp
+++ b/WebKit/android/nav/CachedInput.cpp
@@ -52,7 +52,8 @@ void CachedInput::Debug::print() const
DUMP_NAV_LOGD("%.*s\"\n", index, scratch);
DUMP_NAV_LOGD("// int mMaxLength=%d;\n", b->mMaxLength);
DUMP_NAV_LOGD("// int mTextSize=%d;\n", b->mTextSize);
- DEBUG_PRINT_BOOL(mIsPassword);
+ DUMP_NAV_LOGD("// int mInputType=%d;\n", b->mInputType);
+ DEBUG_PRINT_BOOL(mIsReadOnly);
DEBUG_PRINT_BOOL(mIsRtlText);
DEBUG_PRINT_BOOL(mIsTextField);
}