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

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, 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/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 028674bb4ed259c926b188e57ed2e4241e490e30..e1298f83a1b3fed71968bdcf435908abf20b3629 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