| Index: Source/core/html/HTMLTableElement.cpp
|
| diff --git a/Source/core/html/HTMLTableElement.cpp b/Source/core/html/HTMLTableElement.cpp
|
| index 843895448f98339f6493e816aefa76147177bb95..5d67a971af79ab3ff566bdf9baa6dfe5eb61f867 100644
|
| --- a/Source/core/html/HTMLTableElement.cpp
|
| +++ b/Source/core/html/HTMLTableElement.cpp
|
| @@ -71,7 +71,7 @@ HTMLTableCaptionElement* HTMLTableElement::caption() const
|
| return Traversal<HTMLTableCaptionElement>::firstChild(*this);
|
| }
|
|
|
| -void HTMLTableElement::setCaption(PassRefPtr<HTMLTableCaptionElement> newCaption, ExceptionState& exceptionState)
|
| +void HTMLTableElement::setCaption(PassRefPtrWillBeRawPtr<HTMLTableCaptionElement> newCaption, ExceptionState& exceptionState)
|
| {
|
| deleteCaption();
|
| insertBefore(newCaption, firstChild(), exceptionState);
|
| @@ -86,7 +86,7 @@ HTMLTableSectionElement* HTMLTableElement::tHead() const
|
| return 0;
|
| }
|
|
|
| -void HTMLTableElement::setTHead(PassRefPtr<HTMLTableSectionElement> newHead, ExceptionState& exceptionState)
|
| +void HTMLTableElement::setTHead(PassRefPtrWillBeRawPtr<HTMLTableSectionElement> newHead, ExceptionState& exceptionState)
|
| {
|
| deleteTHead();
|
|
|
| @@ -108,7 +108,7 @@ HTMLTableSectionElement* HTMLTableElement::tFoot() const
|
| return 0;
|
| }
|
|
|
| -void HTMLTableElement::setTFoot(PassRefPtr<HTMLTableSectionElement> newFoot, ExceptionState& exceptionState)
|
| +void HTMLTableElement::setTFoot(PassRefPtrWillBeRawPtr<HTMLTableSectionElement> newFoot, ExceptionState& exceptionState)
|
| {
|
| deleteTFoot();
|
|
|
|
|