⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 107343 in webkit


Ignore:
Timestamp:
Feb 9, 2012, 6:47:04 PM (15 years ago)
Author:
cevans@google.com
Message:

Merge 106972
BUG=112093
Review URL: https://chromiumcodereview.appspot.com/9371041

Location:
branches/chromium/1025
Files:
1 edited
4 copied

Legend:

Unmodified
Added
Removed
  • branches/chromium/1025/Source/WebCore/dom/ContainerNode.cpp

    r107342 r107343  
    117117    ASSERT(refCount() || parentOrHostNode());
    118118
     119    RefPtr<Node> protect(this);
     120
    119121    ec = 0;
    120122
     
    262264    ASSERT(refCount() || parentOrHostNode());
    263265
     266    RefPtr<Node> protect(this);
     267
    264268    ec = 0;
    265269
     
    428432    ASSERT(refCount() || parentOrHostNode());
    429433
     434    RefPtr<Node> protect(this);
     435
    430436    ec = 0;
    431437
     
    606612bool ContainerNode::appendChild(PassRefPtr<Node> newChild, ExceptionCode& ec, bool shouldLazyAttach)
    607613{
    608     RefPtr<ContainerNode> protector(this);
     614    RefPtr<ContainerNode> protect(this);
    609615
    610616    // Check that this node is not "floating".
Note: See TracChangeset for help on using the changeset viewer.