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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/Source/core/html/HTMLFormControlsCollection.h
diff --git a/third_party/WebKit/Source/core/html/HTMLFormControlsCollection.h b/third_party/WebKit/Source/core/html/HTMLFormControlsCollection.h
index eedb4143bbdba5e0744d5c05b0e359b8446573fb..2d202d7cb3e7fd9ceb1455affa9a70bcb15916a7 100644
--- a/third_party/WebKit/Source/core/html/HTMLFormControlsCollection.h
+++ b/third_party/WebKit/Source/core/html/HTMLFormControlsCollection.h
@@ -40,7 +40,7 @@ class RadioNodeListOrElement;
class HTMLFormControlsCollection final : public HTMLCollection {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<HTMLFormControlsCollection> create(ContainerNode&, CollectionType);
+ static RawPtr<HTMLFormControlsCollection> create(ContainerNode&, CollectionType);
~HTMLFormControlsCollection() override;
@@ -58,11 +58,11 @@ private:
void supportedPropertyNames(Vector<String>& names) override;
const FormAssociatedElement::List& formControlElements() const;
- const WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement>>& formImageElements() const;
+ const HeapVector<Member<HTMLImageElement>>& formImageElements() const;
HTMLElement* virtualItemAfter(Element*) const override;
void invalidateCache(Document* oldDocument = 0) const override;
- mutable RawPtrWillBeMember<HTMLElement> m_cachedElement;
+ mutable Member<HTMLElement> m_cachedElement;
mutable unsigned m_cachedElementOffsetInArray;
};
DEFINE_TYPE_CASTS(HTMLFormControlsCollection, LiveNodeListBase, collection, collection->type() == FormControls, collection.type() == FormControls);

Powered by Google App Engine
This is Rietveld 408576698