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

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

Issue 488763002: Introduce HTMLDataListOptionsCollection subclass for HTMLCollection (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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/HTMLDataListElement.h
diff --git a/Source/core/html/HTMLDataListElement.h b/Source/core/html/HTMLDataListElement.h
index de0df60947e8cf2fbcd2f7172e4d8ffb988b116e..a97be23a840c9eca83648678bba3a240e1e32088 100644
--- a/Source/core/html/HTMLDataListElement.h
+++ b/Source/core/html/HTMLDataListElement.h
@@ -32,16 +32,17 @@
#ifndef HTMLDataListElement_h
#define HTMLDataListElement_h
-#include "core/html/HTMLCollection.h"
#include "core/html/HTMLElement.h"
namespace blink {
+class HTMLDataListOptionsCollection;
+
class HTMLDataListElement FINAL : public HTMLElement {
public:
static PassRefPtrWillBeRawPtr<HTMLDataListElement> create(Document&);
- PassRefPtrWillBeRawPtr<HTMLCollection> options();
+ PassRefPtrWillBeRawPtr<HTMLDataListOptionsCollection> options();
void optionElementChildrenChanged();

Powered by Google App Engine
This is Rietveld 408576698