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

Unified Diff: third_party/WebKit/Source/core/html/HTMLOutputElement.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/HTMLOutputElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLOutputElement.h b/third_party/WebKit/Source/core/html/HTMLOutputElement.h
index 09369982e178aa22d4c7241cf4e221b4b99b3490..95d5106ab1add94b798b0d8f71b2a0ee9218fc45 100644
--- a/third_party/WebKit/Source/core/html/HTMLOutputElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLOutputElement.h
@@ -38,9 +38,9 @@ namespace blink {
class CORE_EXPORT HTMLOutputElement final : public HTMLFormControlElement, private DOMTokenListObserver {
DEFINE_WRAPPERTYPEINFO();
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLOutputElement);
+ USING_GARBAGE_COLLECTED_MIXIN(HTMLOutputElement);
public:
- static PassRefPtrWillBeRawPtr<HTMLOutputElement> create(Document&, HTMLFormElement*);
+ static RawPtr<HTMLOutputElement> create(Document&, HTMLFormElement*);
~HTMLOutputElement() override;
bool willValidate() const override { return false; }
@@ -72,7 +72,7 @@ private:
bool m_isDefaultValueMode;
String m_defaultValue;
- RefPtrWillBeMember<DOMTokenList> m_tokens;
+ Member<DOMTokenList> m_tokens;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698