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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFieldSetElement.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/HTMLFieldSetElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp b/third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp
index 7861dd23f4a23086e1afb1928b610de5778e56a4..1a71d292849c30602bbb907841391d805fc1151e 100644
--- a/third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp
@@ -44,9 +44,9 @@ inline HTMLFieldSetElement::HTMLFieldSetElement(Document& document, HTMLFormElem
{
}
-PassRefPtrWillBeRawPtr<HTMLFieldSetElement> HTMLFieldSetElement::create(Document& document, HTMLFormElement* form)
+RawPtr<HTMLFieldSetElement> HTMLFieldSetElement::create(Document& document, HTMLFormElement* form)
{
- return adoptRefWillBeNoop(new HTMLFieldSetElement(document, form));
+ return new HTMLFieldSetElement(document, form);
}
DEFINE_TRACE(HTMLFieldSetElement)
@@ -121,7 +121,7 @@ HTMLLegendElement* HTMLFieldSetElement::legend() const
return Traversal<HTMLLegendElement>::firstChild(*this);
}
-PassRefPtrWillBeRawPtr<HTMLFormControlsCollection> HTMLFieldSetElement::elements()
+RawPtr<HTMLFormControlsCollection> HTMLFieldSetElement::elements()
{
return ensureCachedCollection<HTMLFormControlsCollection>(FormControls);
}
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLFieldSetElement.h ('k') | third_party/WebKit/Source/core/html/HTMLFontElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698