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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTemplateElement.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/HTMLTemplateElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLTemplateElement.h b/third_party/WebKit/Source/core/html/HTMLTemplateElement.h
index 2574ec11562858da80e4eff141ae096abe7f6d66..5de1c4aaa470285436436b8ba3dd12b85a1cd66d 100644
--- a/third_party/WebKit/Source/core/html/HTMLTemplateElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLTemplateElement.h
@@ -48,12 +48,12 @@ public:
DocumentFragment* content() const;
private:
- PassRefPtrWillBeRawPtr<Node> cloneNode(bool deep) override;
+ RawPtr<Node> cloneNode(bool deep) override;
void didMoveToNewDocument(Document& oldDocument) override;
explicit HTMLTemplateElement(Document&);
- mutable RefPtrWillBeMember<TemplateContentDocumentFragment> m_content;
+ mutable Member<TemplateContentDocumentFragment> m_content;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLTagCollection.h ('k') | third_party/WebKit/Source/core/html/HTMLTemplateElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698