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

Unified Diff: third_party/WebKit/Source/core/html/LabelsNodeList.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/LabelsNodeList.h
diff --git a/third_party/WebKit/Source/core/html/LabelsNodeList.h b/third_party/WebKit/Source/core/html/LabelsNodeList.h
index 1999159228bdd0099f267e750a4de9877d97a0ff..630f65cb7e6d6beb8d7f04a67ffd298cc69c907c 100644
--- a/third_party/WebKit/Source/core/html/LabelsNodeList.h
+++ b/third_party/WebKit/Source/core/html/LabelsNodeList.h
@@ -32,10 +32,10 @@ namespace blink {
class LabelsNodeList final : public LiveNodeList {
public:
- static PassRefPtrWillBeRawPtr<LabelsNodeList> create(ContainerNode& ownerNode, CollectionType type)
+ static RawPtr<LabelsNodeList> create(ContainerNode& ownerNode, CollectionType type)
{
ASSERT_UNUSED(type, type == LabelsNodeListType);
- return adoptRefWillBeNoop(new LabelsNodeList(ownerNode));
+ return new LabelsNodeList(ownerNode);
}
virtual ~LabelsNodeList();
« no previous file with comments | « third_party/WebKit/Source/core/html/LabelableElement.cpp ('k') | third_party/WebKit/Source/core/html/LinkManifest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698