summaryrefslogtreecommitdiffstats
path: root/WebCore/rendering/RenderTextControlSingleLine.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/rendering/RenderTextControlSingleLine.h')
-rw-r--r--WebCore/rendering/RenderTextControlSingleLine.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/WebCore/rendering/RenderTextControlSingleLine.h b/WebCore/rendering/RenderTextControlSingleLine.h
index 0deb063..26987fd 100644
--- a/WebCore/rendering/RenderTextControlSingleLine.h
+++ b/WebCore/rendering/RenderTextControlSingleLine.h
@@ -143,6 +143,9 @@ private:
InputElement* inputElement() const;
+ virtual int textBlockInsetLeft() const;
+ virtual int textBlockInsetRight() const;
+
bool m_searchPopupIsVisible;
bool m_shouldDrawCapsLockIndicator;
@@ -161,7 +164,7 @@ private:
};
inline RenderTextControlSingleLine* toRenderTextControlSingleLine(RenderObject* object)
-{
+{
ASSERT(!object || object->isTextField());
return static_cast<RenderTextControlSingleLine*>(object);
}