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

Unified Diff: third_party/WebKit/Source/core/dom/CDATASection.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/dom/CDATASection.h
diff --git a/third_party/WebKit/Source/core/dom/CDATASection.h b/third_party/WebKit/Source/core/dom/CDATASection.h
index 1f2879bca31d5974e08fadda43617af700a13b25..600807766be898fe534ac45179d8b6bb9c942889 100644
--- a/third_party/WebKit/Source/core/dom/CDATASection.h
+++ b/third_party/WebKit/Source/core/dom/CDATASection.h
@@ -30,14 +30,14 @@ namespace blink {
class CDATASection final : public Text {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<CDATASection> create(Document&, const String&);
+ static RawPtr<CDATASection> create(Document&, const String&);
private:
CDATASection(Document&, const String&);
String nodeName() const override;
NodeType getNodeType() const override;
- PassRefPtrWillBeRawPtr<Text> cloneWithData(const String&) override;
+ RawPtr<Text> cloneWithData(const String&) override;
};
DEFINE_NODE_TYPE_CASTS(CDATASection, getNodeType() == Node::CDATA_SECTION_NODE);
« no previous file with comments | « third_party/WebKit/Source/core/dom/AttrTest.cpp ('k') | third_party/WebKit/Source/core/dom/CDATASection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698