| Index: third_party/WebKit/Source/core/html/HTMLTableElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLTableElement.h b/third_party/WebKit/Source/core/html/HTMLTableElement.h
|
| index 2315b3aaba0245577a5bd83ca6bcb868e61b4bf0..1a9b6065ea8a434924d441c265e4d98e55342579 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLTableElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLTableElement.h
|
| @@ -51,14 +51,14 @@ public:
|
| HTMLTableSectionElement* tFoot() const;
|
| void setTFoot(PassRefPtrWillBeRawPtr<HTMLTableSectionElement>, ExceptionState&);
|
|
|
| - PassRefPtrWillBeRawPtr<HTMLElement> createTHead();
|
| + PassRefPtrWillBeRawPtr<HTMLTableSectionElement> createTHead();
|
| void deleteTHead();
|
| - PassRefPtrWillBeRawPtr<HTMLElement> createTFoot();
|
| + PassRefPtrWillBeRawPtr<HTMLTableSectionElement> createTFoot();
|
| void deleteTFoot();
|
| - PassRefPtrWillBeRawPtr<HTMLElement> createTBody();
|
| - PassRefPtrWillBeRawPtr<HTMLElement> createCaption();
|
| + PassRefPtrWillBeRawPtr<HTMLTableSectionElement> createTBody();
|
| + PassRefPtrWillBeRawPtr<HTMLTableCaptionElement> createCaption();
|
| void deleteCaption();
|
| - PassRefPtrWillBeRawPtr<HTMLElement> insertRow(int index, ExceptionState&);
|
| + PassRefPtrWillBeRawPtr<HTMLTableRowElement> insertRow(int index, ExceptionState&);
|
| void deleteRow(int index, ExceptionState&);
|
|
|
| PassRefPtrWillBeRawPtr<HTMLTableRowsCollection> rows();
|
|
|