summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/WebCore/html/HTMLDocument.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/webkit/WebCore/html/HTMLDocument.h')
-rw-r--r--src/3rdparty/webkit/WebCore/html/HTMLDocument.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/3rdparty/webkit/WebCore/html/HTMLDocument.h b/src/3rdparty/webkit/WebCore/html/HTMLDocument.h
index ab5da50a5..eda759328 100644
--- a/src/3rdparty/webkit/WebCore/html/HTMLDocument.h
+++ b/src/3rdparty/webkit/WebCore/html/HTMLDocument.h
@@ -1,7 +1,7 @@
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
- * Copyright (C) 2004, 2006, 2007, 2008 Apple Inc. All rights reserved.
+ * Copyright (C) 2004, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -23,8 +23,10 @@
#ifndef HTMLDocument_h
#define HTMLDocument_h
+#include "AtomicStringHash.h"
#include "CachedResourceClient.h"
#include "Document.h"
+#include <wtf/HashCountedSet.h>
namespace WebCore {
@@ -81,8 +83,6 @@ public:
void removeExtraNamedItem(const AtomicString& name);
bool hasExtraNamedItem(AtomicStringImpl* name);
- typedef HashMap<AtomicStringImpl*, int> NameCountMap;
-
protected:
HTMLDocument(Frame*);
@@ -92,8 +92,8 @@ private:
virtual Tokenizer* createTokenizer();
virtual void determineParseMode();
- NameCountMap m_namedItemCounts;
- NameCountMap m_extraNamedItemCounts;
+ HashCountedSet<AtomicStringImpl*> m_namedItemCounts;
+ HashCountedSet<AtomicStringImpl*> m_extraNamedItemCounts;
};
inline bool HTMLDocument::hasNamedItem(AtomicStringImpl* name)
@@ -108,6 +108,6 @@ inline bool HTMLDocument::hasExtraNamedItem(AtomicStringImpl* name)
return m_extraNamedItemCounts.contains(name);
}
-} // namespace
+} // namespace WebCore
-#endif
+#endif // HTMLDocument_h