Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / HTMLAudioElement.h
index 92ec429..1c8e1f7 100644 (file)
@@ -34,14 +34,17 @@ namespace blink {
 class Document;
 
 class HTMLAudioElement FINAL : public HTMLMediaElement {
+    DEFINE_WRAPPERTYPEINFO();
 public:
     static PassRefPtrWillBeRawPtr<HTMLAudioElement> create(Document&);
     static PassRefPtrWillBeRawPtr<HTMLAudioElement> createForJSConstructor(Document&, const AtomicString& src);
 
+    virtual bool isHTMLAudioElement() const OVERRIDE { return true; }
+
 private:
     HTMLAudioElement(Document&);
 };
 
-} //namespace
+} // namespace blink
 
-#endif
+#endif // HTMLAudioElement_h