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

Unified Diff: third_party/WebKit/Source/core/html/imports/LinkImport.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/imports/LinkImport.h
diff --git a/third_party/WebKit/Source/core/html/imports/LinkImport.h b/third_party/WebKit/Source/core/html/imports/LinkImport.h
index 926c5e6a97c52d799515e9890dcc9e3cf6e9e30c..d19f77c32b1ba699d8d594b48071f2ee3d18e539 100644
--- a/third_party/WebKit/Source/core/html/imports/LinkImport.h
+++ b/third_party/WebKit/Source/core/html/imports/LinkImport.h
@@ -46,11 +46,10 @@ class HTMLImportChild;
// A LinkResource subclasss used for @rel=import.
//
class LinkImport final : public LinkResource, public HTMLImportChildClient {
- USING_FAST_MALLOC_WILL_BE_REMOVED(LinkImport);
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(LinkImport);
+ USING_GARBAGE_COLLECTED_MIXIN(LinkImport);
public:
- static PassOwnPtrWillBeRawPtr<LinkImport> create(HTMLLinkElement* owner);
+ static RawPtr<LinkImport> create(HTMLLinkElement* owner);
explicit LinkImport(HTMLLinkElement* owner);
~LinkImport() override;
@@ -71,7 +70,7 @@ public:
Document* importedDocument() const;
private:
- RawPtrWillBeMember<HTMLImportChild> m_child;
+ Member<HTMLImportChild> m_child;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698