diff options
Diffstat (limited to 'WebCore/html/HTMLDocument.h')
-rw-r--r-- | WebCore/html/HTMLDocument.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/WebCore/html/HTMLDocument.h b/WebCore/html/HTMLDocument.h index 567d121..fefbdb7 100644 --- a/WebCore/html/HTMLDocument.h +++ b/WebCore/html/HTMLDocument.h @@ -69,6 +69,8 @@ public: virtual PassRefPtr<Element> createElement(const String& tagName, ExceptionCode&); + virtual void determineParseMode(const String&); + void addNamedItem(const String& name); void removeNamedItem(const String& name); bool hasNamedItem(const String& name); @@ -80,9 +82,6 @@ public: typedef HashMap<StringImpl*, int> NameCountMap; private: - virtual void determineParseMode(); - -private: NameCountMap namedItemCounts; NameCountMap docExtraNamedItemCounts; }; |