| Index: third_party/WebKit/Source/core/html/LinkResource.h
|
| diff --git a/third_party/WebKit/Source/core/html/LinkResource.h b/third_party/WebKit/Source/core/html/LinkResource.h
|
| index 07c983c2fe5b4fa69c3ba3fbaf69bfe0ba022e86..2be43aadef45b97cac646ccccabaa62871d406ad 100644
|
| --- a/third_party/WebKit/Source/core/html/LinkResource.h
|
| +++ b/third_party/WebKit/Source/core/html/LinkResource.h
|
| @@ -42,8 +42,8 @@ namespace blink {
|
| class HTMLLinkElement;
|
| class LocalFrame;
|
|
|
| -class CORE_EXPORT LinkResource : public NoBaseWillBeGarbageCollectedFinalized<LinkResource> {
|
| - WTF_MAKE_NONCOPYABLE(LinkResource); USING_FAST_MALLOC_WILL_BE_REMOVED(LinkResource);
|
| +class CORE_EXPORT LinkResource : public GarbageCollectedFinalized<LinkResource> {
|
| + WTF_MAKE_NONCOPYABLE(LinkResource);
|
| public:
|
| enum LinkResourceType {
|
| Style,
|
| @@ -67,7 +67,7 @@ public:
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| protected:
|
| - RawPtrWillBeMember<HTMLLinkElement> m_owner;
|
| + Member<HTMLLinkElement> m_owner;
|
| };
|
|
|
| class LinkRequestBuilder {
|
| @@ -81,7 +81,7 @@ public:
|
| FetchRequest build(bool lowPriority) const;
|
|
|
| private:
|
| - RawPtrWillBeMember<HTMLLinkElement> m_owner;
|
| + Member<HTMLLinkElement> m_owner;
|
| KURL m_url;
|
| AtomicString m_charset;
|
| };
|
|
|