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

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, 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/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;
};
« no previous file with comments | « third_party/WebKit/Source/core/html/LinkManifest.cpp ('k') | third_party/WebKit/Source/core/html/MediaDocument.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698