summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/android/nav/CachedInput.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/android/nav/CachedInput.h')
-rw-r--r--Source/WebKit/android/nav/CachedInput.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/WebKit/android/nav/CachedInput.h b/Source/WebKit/android/nav/CachedInput.h
index a3eabc7..77ae57b 100644
--- a/Source/WebKit/android/nav/CachedInput.h
+++ b/Source/WebKit/android/nav/CachedInput.h
@@ -78,7 +78,9 @@ public:
void setPaddingLeft(int left) { mPaddingLeft = left; }
void setPaddingRight(int right) { mPaddingRight = right; }
void setPaddingTop(int top) { mPaddingTop = top; }
+ void setSpellcheck(bool spellcheck) { mSpellcheck = spellcheck; }
void setTextSize(float textSize) { mTextSize = textSize; }
+ bool spellcheck() const { return mSpellcheck; }
float textSize() const { return mTextSize; }
private:
@@ -94,6 +96,7 @@ private:
float mTextSize;
Type mType;
bool mAutoComplete : 1;
+ bool mSpellcheck : 1;
bool mIsRtlText : 1;
bool mIsTextField : 1;
bool mIsTextArea : 1;