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

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..574c424d3be9f73f4032e5f054ae59c9bd5c9026 100644
--- a/Source/core/dom/Range.h
+++ b/Source/core/dom/Range.h
@@ -49,9 +49,9 @@ class Text;
class Range FINAL : public RefCountedWillBeGarbageCollectedFinalized<Range>, public ScriptWrappable {
public:
- static PassRefPtrWillBeRawPtr<Range> create(Document&);
- static PassRefPtrWillBeRawPtr<Range> create(Document&, Node* startContainer, int startOffset, Node* endContainer, int endOffset);
- static PassRefPtrWillBeRawPtr<Range> create(Document&, const Position&, const Position&);
+ static PassRefPtrWillBeRawPtr<Range> create(ExecutionContext*);
+ static PassRefPtrWillBeRawPtr<Range> create(ExecutionContext*, Node* startContainer, int startOffset, Node* endContainer, int endOffset);
Jens Widell 2014/06/18 12:53:29 This overload and the next are not used from gener
+ static PassRefPtrWillBeRawPtr<Range> create(ExecutionContext*, const Position&, const Position&);
~Range();
Document& ownerDocument() const { ASSERT(m_ownerDocument); return *m_ownerDocument.get(); }

Powered by Google App Engine
This is Rietveld 408576698