| 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 e38203f419d0a8b289d4285a45ffdfad66ba8edb..2c3b7dcba1f3ba938e27b339af4d4412bc92a5fa 100644
|
| --- a/third_party/WebKit/Source/core/html/LinkResource.h
|
| +++ b/third_party/WebKit/Source/core/html/LinkResource.h
|
| @@ -41,8 +41,8 @@ namespace blink {
|
| class HTMLLinkElement;
|
| class LocalFrame;
|
|
|
| -class LinkResource : public NoBaseWillBeGarbageCollectedFinalized<LinkResource> {
|
| - WTF_MAKE_NONCOPYABLE(LinkResource); USING_FAST_MALLOC_WILL_BE_REMOVED(LinkResource);
|
| +class LinkResource : public GarbageCollectedFinalized<LinkResource> {
|
| + WTF_MAKE_NONCOPYABLE(LinkResource);
|
| public:
|
| enum Type {
|
| Style,
|
| @@ -65,7 +65,7 @@ public:
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| protected:
|
| - RawPtrWillBeMember<HTMLLinkElement> m_owner;
|
| + Member<HTMLLinkElement> m_owner;
|
| };
|
|
|
| class LinkRequestBuilder {
|
| @@ -79,7 +79,7 @@ public:
|
| FetchRequest build(bool lowPriority) const;
|
|
|
| private:
|
| - RawPtrWillBeMember<HTMLLinkElement> m_owner;
|
| + Member<HTMLLinkElement> m_owner;
|
| KURL m_url;
|
| AtomicString m_charset;
|
| };
|
|
|