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

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, 10 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 7da175fac5aaf2e204bf7214cb3c10eb63d91514..a851dd1676724492b81ea9ece30a7e205b12154d 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();
@@ -357,7 +357,7 @@ private:
void subtreeHasChanged() final;
- void setListAttributeTargetObserver(PassOwnPtrWillBeRawPtr<ListAttributeTargetObserver>);
+ void setListAttributeTargetObserver(RawPtr<ListAttributeTargetObserver>);
void resetListAttributeTargetObserver();
void parseMaxLengthAttribute(const AtomicString&);
void parseMinLengthAttribute(const AtomicString&);
@@ -392,13 +392,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

Powered by Google App Engine
This is Rietveld 408576698