OLD | NEW |
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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 void checkNodeBA(Node*, ExceptionState&) const; | 157 void checkNodeBA(Node*, ExceptionState&) const; |
158 void checkDeleteExtract(ExceptionState&); | 158 void checkDeleteExtract(ExceptionState&); |
159 | 159 |
160 enum ActionType { DELETE_CONTENTS, EXTRACT_CONTENTS, CLONE_CONTENTS }; | 160 enum ActionType { DELETE_CONTENTS, EXTRACT_CONTENTS, CLONE_CONTENTS }; |
161 PassRefPtrWillBeRawPtr<DocumentFragment> processContents(ActionType, Excepti
onState&); | 161 PassRefPtrWillBeRawPtr<DocumentFragment> processContents(ActionType, Excepti
onState&); |
162 static PassRefPtr<Node> processContentsBetweenOffsets(ActionType, PassRefPtr
WillBeRawPtr<DocumentFragment>, Node*, unsigned startOffset, unsigned endOffset,
ExceptionState&); | 162 static PassRefPtr<Node> processContentsBetweenOffsets(ActionType, PassRefPtr
WillBeRawPtr<DocumentFragment>, Node*, unsigned startOffset, unsigned endOffset,
ExceptionState&); |
163 static void processNodes(ActionType, Vector<RefPtr<Node> >&, PassRefPtr<Node
> oldContainer, PassRefPtr<Node> newContainer, ExceptionState&); | 163 static void processNodes(ActionType, Vector<RefPtr<Node> >&, PassRefPtr<Node
> oldContainer, PassRefPtr<Node> newContainer, ExceptionState&); |
164 enum ContentsProcessDirection { ProcessContentsForward, ProcessContentsBackw
ard }; | 164 enum ContentsProcessDirection { ProcessContentsForward, ProcessContentsBackw
ard }; |
165 static PassRefPtr<Node> processAncestorsAndTheirSiblings(ActionType, Node* c
ontainer, ContentsProcessDirection, PassRefPtr<Node> clonedContainer, Node* comm
onRoot, ExceptionState&); | 165 static PassRefPtr<Node> processAncestorsAndTheirSiblings(ActionType, Node* c
ontainer, ContentsProcessDirection, PassRefPtr<Node> clonedContainer, Node* comm
onRoot, ExceptionState&); |
166 | 166 |
167 RefPtr<Document> m_ownerDocument; // Cannot be null. | 167 RefPtrWillBeMember<Document> m_ownerDocument; // Cannot be null. |
168 RangeBoundaryPoint m_start; | 168 RangeBoundaryPoint m_start; |
169 RangeBoundaryPoint m_end; | 169 RangeBoundaryPoint m_end; |
170 }; | 170 }; |
171 | 171 |
172 PassRefPtrWillBeRawPtr<Range> rangeOfContents(Node*); | 172 PassRefPtrWillBeRawPtr<Range> rangeOfContents(Node*); |
173 | 173 |
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 |
OLD | NEW |