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

Unified Diff: Source/core/dom/Comment.h

Issue 340763003: Change [ConstructorCallWith={Document => ExecutionContext}] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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: 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&);

Powered by Google App Engine
This is Rietveld 408576698