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

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, 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/RelList.h
diff --git a/third_party/WebKit/Source/core/html/RelList.h b/third_party/WebKit/Source/core/html/RelList.h
index a34a18ebd5b0f20990e378157a98211263de38d8..87fcd89b438246993dc19ef877f5d4bc1d466ce9 100644
--- a/third_party/WebKit/Source/core/html/RelList.h
+++ b/third_party/WebKit/Source/core/html/RelList.h
@@ -14,9 +14,9 @@ namespace blink {
class RelList final : public DOMTokenList {
public:
- static PassRefPtrWillBeRawPtr<RelList> create(Element* element)
+ static RawPtr<RelList> create(Element* element)
{
- return adoptRefWillBeNoop(new RelList(element));
+ return new RelList(element);
}
#if !ENABLE(OILPAN)
@@ -44,7 +44,7 @@ private:
bool validateTokenValue(const AtomicString&, ExceptionState&) const override;
- RawPtrWillBeMember<Element> m_element;
+ Member<Element> m_element;
SpaceSplitString m_relValues;
};
« no previous file with comments | « third_party/WebKit/Source/core/html/RadioNodeList.h ('k') | third_party/WebKit/Source/core/html/TextDocument.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698