Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / HTMLLegendElement.h
index a033309..65e8ac9 100644 (file)
 
 #include "core/html/HTMLElement.h"
 
-namespace WebCore {
+namespace blink {
 
 class HTMLFormControlElement;
 
-class HTMLLegendElement FINAL : public HTMLElement {
+class HTMLLegendElement final : public HTMLElement {
+    DEFINE_WRAPPERTYPEINFO();
 public:
-    static PassRefPtrWillBeRawPtr<HTMLLegendElement> create(Document&);
+    DECLARE_NODE_FACTORY(HTMLLegendElement);
 
     HTMLFormElement* form() const;
 
@@ -42,10 +43,10 @@ private:
     // Control in the legend's fieldset that gets focus and access key.
     HTMLFormControlElement* associatedControl();
 
-    virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE;
-    virtual void focus(bool restorePreviousSelection, FocusType) OVERRIDE;
+    virtual void accessKeyAction(bool sendMouseEvents) override;
+    virtual void focus(bool restorePreviousSelection, FocusType) override;
 };
 
-} //namespace
+} // namespace blink
 
-#endif
+#endif // HTMLLegendElement_h