Chromium Code Reviews| Index: Source/core/html/HTMLTableElement.h |
| diff --git a/Source/core/html/HTMLTableElement.h b/Source/core/html/HTMLTableElement.h |
| index 45be9cf28afd4c2841c70ebf0f07e18e733e6cf2..3502ffdfb73cf63916f0a7fb5370622cfc52cfc7 100644 |
| --- a/Source/core/html/HTMLTableElement.h |
| +++ b/Source/core/html/HTMLTableElement.h |
| @@ -27,13 +27,13 @@ |
| #define HTMLTableElement_h |
| #include "core/html/HTMLElement.h" |
| +#include "core/html/HTMLTableRowsCollection.h" |
|
adamk
2014/06/16 20:23:17
Again interested why the include was needed. Perha
Inactive
2014/06/16 20:35:51
Same reason. The V8TableElement.cpp wouldn't build
|
| namespace WebCore { |
| class ExceptionState; |
| class HTMLCollection; |
| class HTMLTableCaptionElement; |
| -class HTMLTableRowsCollection; |
| class HTMLTableSectionElement; |
| class HTMLTableElement FINAL : public HTMLElement { |
| @@ -60,7 +60,7 @@ public: |
| PassRefPtrWillBeRawPtr<HTMLElement> insertRow(int index, ExceptionState&); |
| void deleteRow(int index, ExceptionState&); |
| - PassRefPtrWillBeRawPtr<HTMLCollection> rows(); |
| + PassRefPtrWillBeRawPtr<HTMLTableRowsCollection> rows(); |
| PassRefPtrWillBeRawPtr<HTMLCollection> tBodies(); |
| const AtomicString& rules() const; |