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

Unified Diff: third_party/WebKit/Source/core/html/LinkResource.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/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;
};

Powered by Google App Engine
This is Rietveld 408576698