diff options
Diffstat (limited to 'WebCore/dom/NodeRareData.h')
-rw-r--r-- | WebCore/dom/NodeRareData.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/WebCore/dom/NodeRareData.h b/WebCore/dom/NodeRareData.h index 4d80cee..531fc57 100644 --- a/WebCore/dom/NodeRareData.h +++ b/WebCore/dom/NodeRareData.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008 Apple Inc. All rights reserved. + * Copyright (C) 2008, 2010 Apple Inc. All rights reserved. * Copyright (C) 2008 David Smith <catfish.man@gmail.com> * * This library is free software; you can redistribute it and/or @@ -29,8 +29,8 @@ #include "StringHash.h" #include "TagNodeList.h" #include <wtf/HashSet.h> -#include <wtf/PassOwnPtr.h> #include <wtf/OwnPtr.h> +#include <wtf/PassOwnPtr.h> namespace WebCore { @@ -77,6 +77,10 @@ public: { } + virtual ~NodeRareData() + { + } + typedef HashMap<const Node*, NodeRareData*> NodeRareDataMap; static NodeRareDataMap& rareDataMap() @@ -123,6 +127,6 @@ private: bool m_needsFocusAppearanceUpdateSoonAfterAttach : 1; }; -} //namespace +} // namespace WebCore -#endif +#endif // NodeRareData_h |