| Index: Source/core/html/InputType.cpp
|
| diff --git a/Source/core/html/InputType.cpp b/Source/core/html/InputType.cpp
|
| index 27dc94d9d71d822153bea7014366800fc073af7e..06fd1fde0cd8b6f4b379072b42fe11c8c313eb07 100644
|
| --- a/Source/core/html/InputType.cpp
|
| +++ b/Source/core/html/InputType.cpp
|
| @@ -426,9 +426,11 @@ void InputType::handleBeforeTextInsertedEvent(BeforeTextInsertedEvent*)
|
| {
|
| }
|
|
|
| +#if ENABLE(TOUCH_EVENTS)
|
| void InputType::handleTouchEvent(TouchEvent*)
|
| {
|
| }
|
| +#endif
|
|
|
| void InputType::forwardEvent(Event*)
|
| {
|
| @@ -902,10 +904,12 @@ void InputType::subtreeHasChanged()
|
| ASSERT_NOT_REACHED();
|
| }
|
|
|
| +#if ENABLE(TOUCH_EVENTS)
|
| bool InputType::hasTouchEventHandler() const
|
| {
|
| return false;
|
| }
|
| +#endif
|
|
|
| String InputType::defaultToolTip() const
|
| {
|
|
|