Show
Ignore:
Timestamp:
03/15/07 12:07:15 (22 months ago)
Author:
bdakin
Message:

Rubber-stamped by Adele.

Rolling out http://trac.webkit.org/projects/webkit/changeset/20148
(which is a fix for http://bugs.webkit.org/show_bug.cgi?id=12595
and rdar://4722863) because it causes a horrible memory-trasher.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/dom/Node.h

    r20148 r20214  
    5555class RenderStyle; 
    5656class TextStream; 
    57 class TreeNodeList; 
    5857 
    5958typedef int ExceptionCode; 
     
    441440#endif 
    442441 
    443     void registerNodeList(TreeNodeList*); 
    444     void unregisterNodeList(TreeNodeList*); 
     442    void registerNodeList(NodeList*); 
     443    void unregisterNodeList(NodeList*); 
    445444    void notifyNodeListsChildrenChanged(); 
    446445    void notifyLocalNodeListsChildrenChanged(); 
     
    458457 
    459458protected: 
    460     typedef HashSet<TreeNodeList*> NodeListSet; 
     459    typedef HashSet<NodeList*> NodeListSet; 
    461460    NodeListSet* m_nodeLists; 
    462461