Changeset 87128 in webkit


Ignore:
Timestamp:
May 23, 2011 11:07:28 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-05-23 Julien Chaffraix <jchaffraix@codeaurora.org>

Reviewed by Adam Barth.

Remove Node::deprecatedParserAddChild
https://bugs.webkit.org/show_bug.cgi?id=60818

No new tests as this is just a removal.

  • dom/ContainerNode.cpp:
  • dom/ContainerNode.h:
  • dom/Node.cpp:
  • dom/Node.h: Removed the method now that the last instance got removed as part of the <input> shadow DOM refactoring.
Location:
trunk/Source/WebCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r87127 r87128  
     12011-05-23  Julien Chaffraix  <jchaffraix@codeaurora.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Remove Node::deprecatedParserAddChild
     6        https://bugs.webkit.org/show_bug.cgi?id=60818
     7
     8        No new tests as this is just a removal.
     9
     10        * dom/ContainerNode.cpp:
     11        * dom/ContainerNode.h:
     12        * dom/Node.cpp:
     13        * dom/Node.h:
     14        Removed the method now that the last instance got removed as part of the <input>
     15        shadow DOM refactoring.
     16
    1172011-05-23  Dirk Schulze  <krit@webkit.org>
    218
  • trunk/Source/WebCore/dom/ContainerNode.cpp

    r87079 r87128  
    687687}
    688688
    689 void ContainerNode::deprecatedParserAddChild(PassRefPtr<Node> node)
    690 {
    691     parserAddChild(node);
    692 }
    693 
    694689void ContainerNode::suspendPostAttachCallbacks()
    695690{
  • trunk/Source/WebCore/dom/ContainerNode.h

    r78317 r87128  
    103103
    104104private:
    105     // Never call this function directly.  If you're trying to call this
    106     // function, your code is either wrong or you're supposed to call
    107     // parserAddChild.  Please do not call parserAddChild unless you are the
    108     // parser!
    109     virtual void deprecatedParserAddChild(PassRefPtr<Node>);
    110 
    111105    void removeBetween(Node* previousChild, Node* nextChild, Node* oldChild);
    112106    void insertBeforeCommon(Node* nextChild, Node* oldChild);
  • trunk/Source/WebCore/dom/Node.cpp

    r87125 r87128  
    755755}
    756756
    757 void Node::deprecatedParserAddChild(PassRefPtr<Node>)
    758 {
    759 }
    760 
    761757bool Node::isContentEditable() const
    762758{
  • trunk/Source/WebCore/dom/Node.h

    r87125 r87128  
    269269    bool inSameContainingBlockFlowElement(Node*);
    270270
    271     // FIXME: All callers of this function are almost certainly wrong!
    272     virtual void deprecatedParserAddChild(PassRefPtr<Node>);
    273 
    274271    // Called by the parser when this element's close tag is reached,
    275272    // signaling that all child tags have been parsed and added.
Note: See TracChangeset for help on using the changeset viewer.