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

Side by Side 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * (C) 1999 Lars Knoll (knoll@kde.org) 2 * (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Gunnstein Lye (gunnstein@netcom.no) 3 * (C) 2000 Gunnstein Lye (gunnstein@netcom.no)
4 * (C) 2000 Frederik Holljen (frederik.holljen@hig.no) 4 * (C) 2000 Frederik Holljen (frederik.holljen@hig.no)
5 * (C) 2001 Peter Kelly (pmk@post.com) 5 * (C) 2001 Peter Kelly (pmk@post.com)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 class Document; 42 class Document;
43 class DocumentFragment; 43 class DocumentFragment;
44 class ExceptionState; 44 class ExceptionState;
45 class FloatQuad; 45 class FloatQuad;
46 class Node; 46 class Node;
47 class NodeWithIndex; 47 class NodeWithIndex;
48 class Text; 48 class Text;
49 49
50 class Range FINAL : public RefCountedWillBeGarbageCollectedFinalized<Range>, pub lic ScriptWrappable { 50 class Range FINAL : public RefCountedWillBeGarbageCollectedFinalized<Range>, pub lic ScriptWrappable {
51 public: 51 public:
52 static PassRefPtrWillBeRawPtr<Range> create(Document&); 52 static PassRefPtrWillBeRawPtr<Range> create(ExecutionContext*);
53 static PassRefPtrWillBeRawPtr<Range> create(Document&, Node* startContainer, int startOffset, Node* endContainer, int endOffset); 53 static PassRefPtrWillBeRawPtr<Range> create(ExecutionContext*, Node* startCo ntainer, int startOffset, Node* endContainer, int endOffset);
Jens Widell 2014/06/18 12:53:29 This overload and the next are not used from gener
54 static PassRefPtrWillBeRawPtr<Range> create(Document&, const Position&, cons t Position&); 54 static PassRefPtrWillBeRawPtr<Range> create(ExecutionContext*, const Positio n&, const Position&);
55 ~Range(); 55 ~Range();
56 56
57 Document& ownerDocument() const { ASSERT(m_ownerDocument); return *m_ownerDo cument.get(); } 57 Document& ownerDocument() const { ASSERT(m_ownerDocument); return *m_ownerDo cument.get(); }
58 Node* startContainer() const { return m_start.container(); } 58 Node* startContainer() const { return m_start.container(); }
59 int startOffset() const { return m_start.offset(); } 59 int startOffset() const { return m_start.offset(); }
60 Node* endContainer() const { return m_end.container(); } 60 Node* endContainer() const { return m_end.container(); }
61 int endOffset() const { return m_end.offset(); } 61 int endOffset() const { return m_end.offset(); }
62 62
63 bool collapsed() const { return m_start == m_end; } 63 bool collapsed() const { return m_start == m_end; }
64 64
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 bool areRangesEqual(const Range*, const Range*); 174 bool areRangesEqual(const Range*, const Range*);
175 175
176 } // namespace 176 } // namespace
177 177
178 #ifndef NDEBUG 178 #ifndef NDEBUG
179 // Outside the WebCore namespace for ease of invocation from gdb. 179 // Outside the WebCore namespace for ease of invocation from gdb.
180 void showTree(const WebCore::Range*); 180 void showTree(const WebCore::Range*);
181 #endif 181 #endif
182 182
183 #endif 183 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698