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

Unified Diff: third_party/WebKit/Source/core/html/HTMLDataListOptionsCollection.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/HTMLDataListOptionsCollection.h
diff --git a/third_party/WebKit/Source/core/html/HTMLDataListOptionsCollection.h b/third_party/WebKit/Source/core/html/HTMLDataListOptionsCollection.h
index ccb9c57f9eaac320d858fb167fbd8e30b848e0da..ed824192071c5c0b7fae7dd0d43c4594f11c3517 100644
--- a/third_party/WebKit/Source/core/html/HTMLDataListOptionsCollection.h
+++ b/third_party/WebKit/Source/core/html/HTMLDataListOptionsCollection.h
@@ -12,10 +12,10 @@ namespace blink {
class HTMLDataListOptionsCollection : public HTMLCollection {
public:
- static PassRefPtrWillBeRawPtr<HTMLDataListOptionsCollection> create(ContainerNode& ownerNode, CollectionType type)
+ static RawPtr<HTMLDataListOptionsCollection> create(ContainerNode& ownerNode, CollectionType type)
{
ASSERT_UNUSED(type, type == DataListOptions);
- return adoptRefWillBeNoop(new HTMLDataListOptionsCollection(ownerNode));
+ return new HTMLDataListOptionsCollection(ownerNode);
}
HTMLOptionElement* item(unsigned offset) const { return toHTMLOptionElement(HTMLCollection::item(offset)); }
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLDataListElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLDetailsElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698