summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2012-08-31 13:16:14 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-08-31 13:16:15 -0700
commit0bcdd8399abbde312576550f32aa574145be5988 (patch)
tree8b3ead49ff8e9f061146baa4d88558fe8579c8d4
parent9fa7e7c0d2dbd5ad706d1c46cb839ba07a45a7a8 (diff)
parentbae7aeaa877799dc8cffdf66aba2ef118b19a186 (diff)
downloadexternal_webkit-0bcdd8399abbde312576550f32aa574145be5988.zip
external_webkit-0bcdd8399abbde312576550f32aa574145be5988.tar.gz
external_webkit-0bcdd8399abbde312576550f32aa574145be5988.tar.bz2
Merge "Fix initialization" into jb-mr1-dev
-rw-r--r--Source/WebCore/editing/TextIterator.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/WebCore/editing/TextIterator.cpp b/Source/WebCore/editing/TextIterator.cpp
index 3aa68af..871d1f9 100644
--- a/Source/WebCore/editing/TextIterator.cpp
+++ b/Source/WebCore/editing/TextIterator.cpp
@@ -298,6 +298,7 @@ TextIterator::TextIterator(const Range* r, TextIteratorBehavior behavior)
#if OS(ANDROID)
, m_stopsOnFormControls(behavior & TextIteratorStopsOnFormControls)
, m_shouldStop(false)
+ , m_needsAnotherNewline(false)
#endif
{
if (!r)