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

Unified Diff: third_party/WebKit/Source/core/html/RelList.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, 10 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/RelList.h
diff --git a/third_party/WebKit/Source/core/html/RelList.h b/third_party/WebKit/Source/core/html/RelList.h
index 2d0416fe4ccf426e9ce98fec8627237faf0f4c5e..4fd219248efb293f5d219994bc301d051a683185 100644
--- a/third_party/WebKit/Source/core/html/RelList.h
+++ b/third_party/WebKit/Source/core/html/RelList.h
@@ -15,9 +15,9 @@ namespace blink {
class RelList final : public DOMTokenList {
public:
- static PassOwnPtrWillBeRawPtr<RelList> create(Element* element)
+ static RawPtr<RelList> create(Element* element)
{
- return adoptPtrWillBeNoop(new RelList(element));
+ return (new RelList(element));
}
#if !ENABLE(OILPAN)
@@ -45,7 +45,7 @@ private:
bool validateTokenValue(const AtomicString&, ExceptionState&) const override;
- RawPtrWillBeMember<Element> m_element;
+ Member<Element> m_element;
SpaceSplitString m_relValues;
};

Powered by Google App Engine
This is Rietveld 408576698