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

Unified Diff: third_party/WebKit/Source/core/html/HTMLInputElement.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/HTMLInputElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.h b/third_party/WebKit/Source/core/html/HTMLInputElement.h
index a94aecee75a1c1573eb87b32df4e4eb675ce44b9..eafa95a3a5499ecc1839bc1d24c09865ebabc741 100644
--- a/third_party/WebKit/Source/core/html/HTMLInputElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLInputElement.h
@@ -48,7 +48,7 @@ struct DateTimeChooserParameters;
class CORE_EXPORT HTMLInputElement : public HTMLTextFormControlElement {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<HTMLInputElement> create(Document&, HTMLFormElement*, bool createdByParser);
+ static RawPtr<HTMLInputElement> create(Document&, HTMLFormElement*, bool createdByParser);
~HTMLInputElement() override;
DECLARE_VIRTUAL_TRACE();
@@ -361,7 +361,7 @@ private:
void subtreeHasChanged() final;
- void setListAttributeTargetObserver(PassOwnPtrWillBeRawPtr<ListAttributeTargetObserver>);
+ void setListAttributeTargetObserver(RawPtr<ListAttributeTargetObserver>);
void resetListAttributeTargetObserver();
void parseMaxLengthAttribute(const AtomicString&);
void parseMinLengthAttribute(const AtomicString&);
@@ -396,13 +396,13 @@ private:
unsigned m_shouldRevealPassword : 1;
unsigned m_needsToUpdateViewValue : 1;
unsigned m_isPlaceholderVisible : 1;
- RefPtrWillBeMember<InputType> m_inputType;
- RefPtrWillBeMember<InputTypeView> m_inputTypeView;
+ Member<InputType> m_inputType;
+ Member<InputTypeView> m_inputTypeView;
// The ImageLoader must be owned by this element because the loader code assumes
// that it lives as long as its owning element lives. If we move the loader into
// the ImageInput object we may delete the loader while this element lives on.
- OwnPtrWillBeMember<HTMLImageLoader> m_imageLoader;
- OwnPtrWillBeMember<ListAttributeTargetObserver> m_listAttributeTargetObserver;
+ Member<HTMLImageLoader> m_imageLoader;
+ Member<ListAttributeTargetObserver> m_listAttributeTargetObserver;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLImageLoader.cpp ('k') | third_party/WebKit/Source/core/html/HTMLInputElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698