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

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

Issue 270823004: Oilpan: Prepare to move FormAssociatedElement to Oilpan heap, part 2. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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/HTMLFormControlsCollection.h
diff --git a/Source/core/html/HTMLFormControlsCollection.h b/Source/core/html/HTMLFormControlsCollection.h
index fcec71999be116ad8e75631c3c8196f752811e81..6fbd47bf2c9fe597afa1cc981ff344a0ee230b59 100644
--- a/Source/core/html/HTMLFormControlsCollection.h
+++ b/Source/core/html/HTMLFormControlsCollection.h
@@ -24,12 +24,12 @@
#ifndef HTMLFormControlsCollection_h
#define HTMLFormControlsCollection_h
+#include "core/html/FormAssociatedElement.h"
#include "core/html/HTMLCollection.h"
#include "core/html/RadioNodeList.h"
namespace WebCore {
-class FormAssociatedElement;
class HTMLElement;
class HTMLImageElement;
class QualifiedName;
@@ -52,7 +52,7 @@ private:
virtual void updateIdNameCache() const OVERRIDE;
virtual void supportedPropertyNames(Vector<String>& names) OVERRIDE;
- const Vector<FormAssociatedElement*>& formControlElements() const;
+ const FormAssociatedElement::List& formControlElements() const;
const Vector<HTMLImageElement*>& formImageElements() const;
virtual Element* virtualItemAfter(Element*) const OVERRIDE;
virtual void invalidateCache(Document* oldDocument = 0) const OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698