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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTemplateElement.cpp

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.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLTemplateElement.cpp b/third_party/WebKit/Source/core/html/HTMLTemplateElement.cpp
index 91ab92bd5d28c50485b01123b6e051a9e45bd160..91070f6f8f0a1e9b5f8f7fa9b15af2159b3258a0 100644
--- a/third_party/WebKit/Source/core/html/HTMLTemplateElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLTemplateElement.cpp
@@ -61,12 +61,12 @@ DocumentFragment* HTMLTemplateElement::content() const
return m_content.get();
}
-PassRefPtrWillBeRawPtr<Node> HTMLTemplateElement::cloneNode(bool deep)
+RawPtr<Node> HTMLTemplateElement::cloneNode(bool deep)
{
if (!deep)
return cloneElementWithoutChildren();
- RefPtrWillBeRawPtr<Node> clone = cloneElementWithChildren();
+ RawPtr<Node> clone = cloneElementWithChildren();
if (m_content)
content()->cloneChildNodes(toHTMLTemplateElement(clone.get())->content());
return clone.release();
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLTemplateElement.h ('k') | third_party/WebKit/Source/core/html/HTMLTextAreaElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698