Index: Source/core/dom/Comment.h |
diff --git a/Source/core/dom/Comment.h b/Source/core/dom/Comment.h |
index fc68b5264ef0eb523c189e2e02cb776c327a41c7..1f72f50d09a5b7eb19ba110f603095d14d09bbaf 100644 |
--- a/Source/core/dom/Comment.h |
+++ b/Source/core/dom/Comment.h |
@@ -32,6 +32,7 @@ class ExecutionContext; |
class Comment FINAL : public CharacterData { |
public: |
static PassRefPtrWillBeRawPtr<Comment> create(Document&, const String&); |
haraken
2014/06/18 10:49:21
Would it be possible to drop this constructor? It
Jens Widell
2014/06/18 11:00:02
All cases where I overloaded instead of just chang
haraken
2014/06/18 11:16:34
hmm, I cannot come up with any case where we canno
|
+ static PassRefPtrWillBeRawPtr<Comment> create(ExecutionContext*, const String&); |
private: |
Comment(Document&, const String&); |