Index: Source/web/WebTextAreaElement.cpp |
diff --git a/Source/web/WebTextAreaElement.cpp b/Source/web/WebTextAreaElement.cpp |
index 4f6a6851ffa031a904d8247b5158bb37bbf7f89f..7ea4e8b9a586c9ab06042297a7aa3796fbb5e003 100644 |
--- a/Source/web/WebTextAreaElement.cpp |
+++ b/Source/web/WebTextAreaElement.cpp |
@@ -40,41 +40,6 @@ using namespace WebCore; |
namespace blink { |
-void WebTextAreaElement::setValue(const WebString& value) |
-{ |
- unwrap<HTMLTextAreaElement>()->setValue(value); |
-} |
- |
-WebString WebTextAreaElement::value() const |
-{ |
- return constUnwrap<HTMLTextAreaElement>()->value(); |
-} |
- |
-void WebTextAreaElement::setSuggestedValue(const WebString& value) |
-{ |
- unwrap<HTMLTextAreaElement>()->setSuggestedValue(value); |
-} |
- |
-WebString WebTextAreaElement::suggestedValue() const |
-{ |
- return constUnwrap<HTMLTextAreaElement>()->suggestedValue(); |
-} |
- |
-void WebTextAreaElement::setSelectionRange(int start, int end) |
-{ |
- unwrap<HTMLTextAreaElement>()->setSelectionRange(start, end); |
-} |
- |
-bool WebTextAreaElement::autoComplete() const |
-{ |
- return constUnwrap<HTMLTextAreaElement>()->shouldAutocomplete(); |
-} |
- |
-WebString WebTextAreaElement::directionForFormData() const |
-{ |
- return constUnwrap<HTMLTextAreaElement>()->directionForFormData(); |
-} |
- |
WebTextAreaElement::WebTextAreaElement(const PassRefPtr<HTMLTextAreaElement>& element) |
: WebFormControlElement(element) |
{ |