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

Unified Diff: third_party/WebKit/Source/core/html/HTMLLinkElement.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/HTMLLinkElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLLinkElement.h b/third_party/WebKit/Source/core/html/HTMLLinkElement.h
index f6d5338c41e043e633c18956650027ffa7c4b849..95230e544b9ee0b6186c20d175eaea38b3781a53 100644
--- a/third_party/WebKit/Source/core/html/HTMLLinkElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLLinkElement.h
@@ -57,10 +57,9 @@ using LinkEventSender = EventSender<HTMLLinkElement>;
// sticking current way so far.
//
class LinkStyle final : public LinkResource, ResourceOwner<StyleSheetResource> {
- USING_FAST_MALLOC_WILL_BE_REMOVED(LinkStyle);
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(LinkStyle);
+ USING_GARBAGE_COLLECTED_MIXIN(LinkStyle);
public:
- static PassOwnPtrWillBeRawPtr<LinkStyle> create(HTMLLinkElement* owner);
+ static RawPtr<LinkStyle> create(HTMLLinkElement* owner);
explicit LinkStyle(HTMLLinkElement* owner);
~LinkStyle() override;
@@ -119,7 +118,7 @@ private:
m_fetchFollowingCORS = false;
}
- RefPtrWillBeMember<CSSStyleSheet> m_sheet;
+ Member<CSSStyleSheet> m_sheet;
DisabledState m_disabledState;
PendingSheetType m_pendingSheetType;
bool m_loading;
@@ -131,9 +130,9 @@ private:
class CORE_EXPORT HTMLLinkElement final : public HTMLElement, public LinkLoaderClient, private DOMTokenListObserver {
DEFINE_WRAPPERTYPEINFO();
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLLinkElement);
+ USING_GARBAGE_COLLECTED_MIXIN(HTMLLinkElement);
public:
- static PassRefPtrWillBeRawPtr<HTMLLinkElement> create(Document&, bool createdByParser);
+ static RawPtr<HTMLLinkElement> create(Document&, bool createdByParser);
~HTMLLinkElement() override;
KURL href() const;
@@ -218,15 +217,15 @@ private:
// From DOMTokenListObserver
void valueWasSet() final;
- OwnPtrWillBeMember<LinkResource> m_link;
- OwnPtrWillBeMember<LinkLoader> m_linkLoader;
+ Member<LinkResource> m_link;
+ Member<LinkLoader> m_linkLoader;
String m_type;
String m_as;
String m_media;
- RefPtrWillBeMember<DOMTokenList> m_sizes;
+ Member<DOMTokenList> m_sizes;
Vector<IntSize> m_iconSizes;
- RawPtrWillBeMember<RelList> m_relList;
+ Member<RelList> m_relList;
LinkRelAttribute m_relAttribute;
String m_scope;
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLLabelElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLLinkElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698