Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(283)

Unified Diff: third_party/WebKit/public/web/WebTextAreaElement.h

Issue 1365203002: Make WebNode::to<Type>() (and toConst) casts contain type asserts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add BLINK_IMPLEMENTATION guard. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/public/web/WebSelectElement.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/web/WebTextAreaElement.h
diff --git a/third_party/WebKit/public/web/WebTextAreaElement.h b/third_party/WebKit/public/web/WebTextAreaElement.h
index 04b5e736808085ab3ed9e0c88bc003862cd39f88..83c543ef0a2720c010ff70983f745f3155cd7b03 100644
--- a/third_party/WebKit/public/web/WebTextAreaElement.h
+++ b/third_party/WebKit/public/web/WebTextAreaElement.h
@@ -38,7 +38,7 @@ namespace blink {
class HTMLTextAreaElement;
// Provides access to some properties of a DOM textarea element node.
-class WebTextAreaElement : public WebFormControlElement {
+class WebTextAreaElement final : public WebFormControlElement {
public:
WebTextAreaElement() : WebFormControlElement() { }
WebTextAreaElement(const WebTextAreaElement& element) : WebFormControlElement(element) { }
@@ -57,6 +57,8 @@ public:
#endif
};
+DECLARE_WEB_NODE_TYPE_CASTS(WebTextAreaElement);
+
} // namespace blink
#endif
« no previous file with comments | « third_party/WebKit/public/web/WebSelectElement.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698