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

Unified Diff: third_party/WebKit/Source/core/dom/Comment.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/dom/Comment.h
diff --git a/third_party/WebKit/Source/core/dom/Comment.h b/third_party/WebKit/Source/core/dom/Comment.h
index 45a0444000dec49d37bd0f2042481a4d62c6be2e..3b16a0024eb3536fd680ec2072face8843c96a05 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 nodeType() const override;
- PassRefPtrWillBeRawPtr<Node> cloneNode(bool deep) override;
+ RawPtr<Node> cloneNode(bool deep) override;
};
DEFINE_NODE_TYPE_CASTS(Comment, nodeType() == Node::COMMENT_NODE);

Powered by Google App Engine
This is Rietveld 408576698