| Index: third_party/WebKit/Source/core/dom/Comment.h
|
| diff --git a/third_party/WebKit/Source/core/dom/Comment.h b/third_party/WebKit/Source/core/dom/Comment.h
|
| index 8a1e9ead7dd091c6c63a2d8425e4d5eafec8bf1f..30958540a28e1e8c94f288e0813e7ca2fc35b18a 100644
|
| --- a/third_party/WebKit/Source/core/dom/Comment.h
|
| +++ b/third_party/WebKit/Source/core/dom/Comment.h
|
| @@ -30,14 +30,14 @@ namespace blink {
|
| class Comment final : public CharacterData {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<Comment> create(Document&, const String&);
|
| + static RawPtr<Comment> create(Document&, const String&);
|
|
|
| private:
|
| Comment(Document&, const String&);
|
|
|
| String nodeName() const override;
|
| NodeType getNodeType() const override;
|
| - PassRefPtrWillBeRawPtr<Node> cloneNode(bool deep) override;
|
| + RawPtr<Node> cloneNode(bool deep) override;
|
| };
|
|
|
| DEFINE_NODE_TYPE_CASTS(Comment, getNodeType() == Node::COMMENT_NODE);
|
|
|