Commit 54dc6a20 authored by keishi@chromium.org's avatar keishi@chromium.org

Oilpan: Prepare moving table related elements to oilpan.

BUG=357163

Review URL: https://codereview.chromium.org/277863002

git-svn-id: svn://svn.chromium.org/blink/trunk@173742 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 09b68b33
......@@ -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();
......
......@@ -41,13 +41,13 @@ public:
static PassRefPtrWillBeRawPtr<HTMLTableElement> create(Document&);
HTMLTableCaptionElement* caption() const;
void setCaption(PassRefPtr<HTMLTableCaptionElement>, ExceptionState&);
void setCaption(PassRefPtrWillBeRawPtr<HTMLTableCaptionElement>, ExceptionState&);
HTMLTableSectionElement* tHead() const;
void setTHead(PassRefPtr<HTMLTableSectionElement>, ExceptionState&);
void setTHead(PassRefPtrWillBeRawPtr<HTMLTableSectionElement>, ExceptionState&);
HTMLTableSectionElement* tFoot() const;
void setTFoot(PassRefPtr<HTMLTableSectionElement>, ExceptionState&);
void setTFoot(PassRefPtrWillBeRawPtr<HTMLTableSectionElement>, ExceptionState&);
PassRefPtrWillBeRawPtr<HTMLElement> createTHead();
void deleteTHead();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment