diff options
author | Steve Block <steveblock@google.com> | 2010-08-27 11:02:25 +0100 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2010-09-02 17:17:20 +0100 |
commit | e8b154fd68f9b33be40a3590e58347f353835f5c (patch) | |
tree | 0733ce26384183245aaa5656af26c653636fe6c1 /WebCore/html/HTMLParamElement.h | |
parent | da56157816334089526a7a115a85fd85a6e9a1dc (diff) | |
download | external_webkit-e8b154fd68f9b33be40a3590e58347f353835f5c.zip external_webkit-e8b154fd68f9b33be40a3590e58347f353835f5c.tar.gz external_webkit-e8b154fd68f9b33be40a3590e58347f353835f5c.tar.bz2 |
Merge WebKit at r66079 : Initial merge by git
Change-Id: Ie2e1440fb9d487d24e52c247342c076fecaecac7
Diffstat (limited to 'WebCore/html/HTMLParamElement.h')
-rw-r--r-- | WebCore/html/HTMLParamElement.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/WebCore/html/HTMLParamElement.h b/WebCore/html/HTMLParamElement.h index a787927..f13f8fa 100644 --- a/WebCore/html/HTMLParamElement.h +++ b/WebCore/html/HTMLParamElement.h @@ -37,20 +37,18 @@ public: private: HTMLParamElement(const QualifiedName&, Document*); - virtual HTMLTagStatus endTagRequirement() const { return TagStatusForbidden; } - virtual int tagPriority() const { return 0; } - virtual void parseMappedAttribute(Attribute*); virtual bool isURLAttribute(Attribute*) const; virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const; + // FIXME: These don't need to be stored as members and instead + // name() value() could use getAttribute(nameAttr/valueAttr). AtomicString m_name; AtomicString m_value; }; - -} +} // namespace WebCore #endif |