Index: public/web/WebTextAreaElement.h |
diff --git a/public/web/WebTextAreaElement.h b/public/web/WebTextAreaElement.h |
index 489a30882b51356e346fe128ff37f0eaa00bb601..507c3482a7fcd84d30350729984c6ab74ea2ac22 100644 |
--- a/public/web/WebTextAreaElement.h |
+++ b/public/web/WebTextAreaElement.h |
@@ -59,6 +59,13 @@ public: |
#endif |
}; |
+BLINK_EXPORT WebTextAreaElement* toWebTextAreaElement(WebElement*); |
tkent
2014/05/19 05:29:51
Please add a comment for a behavior in case that t
keishi
2014/05/19 08:24:00
Done.
|
+ |
+inline const WebTextAreaElement* toWebTextAreaElement(const WebElement* element) |
+{ |
+ return toWebTextAreaElement(const_cast<WebElement*>(element)); |
+} |
+ |
} // namespace blink |
#endif |