Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(753)

Unified Diff: Source/core/html/HTMLTableElement.h

Issue 334713006: Use stricter typing for NodeLists throughout the code base (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix typo Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698