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

Unified Diff: Source/core/dom/Range.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/Range.h
diff --git a/Source/core/dom/Range.h b/Source/core/dom/Range.h
index f8284d847de06826ec054a3714f95e375b0dfd7b..f973701a0685a9f2c1b322ec77bbbcf5595f8e06 100644
--- a/Source/core/dom/Range.h
+++ b/Source/core/dom/Range.h
@@ -50,6 +50,7 @@ class Text;
class Range FINAL : public RefCountedWillBeGarbageCollectedFinalized<Range>, public ScriptWrappable {
public:
static PassRefPtrWillBeRawPtr<Range> create(Document&);
+ static PassRefPtrWillBeRawPtr<Range> create(ExecutionContext*);
static PassRefPtrWillBeRawPtr<Range> create(Document&, Node* startContainer, int startOffset, Node* endContainer, int endOffset);
static PassRefPtrWillBeRawPtr<Range> create(Document&, const Position&, const Position&);
~Range();

Powered by Google App Engine
This is Rietveld 408576698