summaryrefslogtreecommitdiffstats
path: root/parser/html/nsHtml5AtomTable.h
diff options
context:
space:
mode:
authorMoonchild <mcwerewolf@gmail.com>2018-08-04 13:32:09 +0200
committerGitHub <noreply@github.com>2018-08-04 13:32:09 +0200
commitca87455cc5880897c8b921077819988feede90bd (patch)
treea1e9e1f7e5090ecd6e6677cb67147e2610facb70 /parser/html/nsHtml5AtomTable.h
parent2bc00efe7bb826d683257264471878c05757f2bb (diff)
downloadUXP-ca87455cc5880897c8b921077819988feede90bd.tar
UXP-ca87455cc5880897c8b921077819988feede90bd.tar.gz
UXP-ca87455cc5880897c8b921077819988feede90bd.tar.lz
UXP-ca87455cc5880897c8b921077819988feede90bd.tar.xz
UXP-ca87455cc5880897c8b921077819988feede90bd.zip
Revert "Improve nsHtml5AtomTable performance (#693)" (#695)
This reverts commit 2bc00efe7bb826d683257264471878c05757f2bb.
Diffstat (limited to 'parser/html/nsHtml5AtomTable.h')
-rw-r--r--parser/html/nsHtml5AtomTable.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/parser/html/nsHtml5AtomTable.h b/parser/html/nsHtml5AtomTable.h
index b0dc2f678..43f9b5f2f 100644
--- a/parser/html/nsHtml5AtomTable.h
+++ b/parser/html/nsHtml5AtomTable.h
@@ -11,8 +11,6 @@
#include "nsIAtom.h"
#include "nsIThread.h"
-#define RECENTLY_USED_PARSER_ATOMS_SIZE 31
-
class nsHtml5Atom;
class nsHtml5AtomEntry : public nsStringHashKey
@@ -89,9 +87,6 @@ class nsHtml5AtomTable
*/
void Clear()
{
- for (uint32_t i = 0; i < RECENTLY_USED_PARSER_ATOMS_SIZE; ++i) {
- mRecentlyUsedParserAtoms[i] = nullptr;
- }
mTable.Clear();
}
@@ -104,7 +99,6 @@ class nsHtml5AtomTable
private:
nsTHashtable<nsHtml5AtomEntry> mTable;
- nsIAtom* mRecentlyUsedParserAtoms[RECENTLY_USED_PARSER_ATOMS_SIZE];
#ifdef DEBUG
nsCOMPtr<nsIThread> mPermittedLookupThread;
#endif