Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 13 matching lines...) Expand all Loading... | |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef DOMEditor_h | 31 #ifndef DOMEditor_h |
| 32 #define DOMEditor_h | 32 #define DOMEditor_h |
| 33 | 33 |
| 34 #include "platform/heap/Handle.h" | |
| 34 #include "wtf/text/WTFString.h" | 35 #include "wtf/text/WTFString.h" |
| 35 | 36 |
| 36 namespace WebCore { | 37 namespace WebCore { |
| 37 | 38 |
| 38 class Element; | 39 class Element; |
| 39 class ExceptionState; | 40 class ExceptionState; |
| 40 class InspectorHistory; | 41 class InspectorHistory; |
| 41 class Node; | 42 class Node; |
| 42 class Text; | 43 class Text; |
| 43 | 44 |
| 44 typedef String ErrorString; | 45 typedef String ErrorString; |
| 45 | 46 |
| 46 class DOMEditor { | 47 class DOMEditor FINAL : public NoBaseWillBeGarbageCollected<DOMEditor> { |
|
pfeldman
2014/05/22 14:47:21
What is the motivation of this change? DOMEditor i
haraken
2014/05/22 20:19:31
- InspectorHistory is moved to the heap.
- So if w
pfeldman
2014/05/22 20:43:25
Why moving history to heap? Because some actions p
haraken
2014/05/22 21:21:57
- We're currently moving the Node hierarchy to the
| |
| 47 WTF_MAKE_NONCOPYABLE(DOMEditor); WTF_MAKE_FAST_ALLOCATED; | 48 WTF_MAKE_NONCOPYABLE(DOMEditor); |
| 49 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; | |
| 48 public: | 50 public: |
| 49 explicit DOMEditor(InspectorHistory*); | 51 explicit DOMEditor(InspectorHistory*); |
| 50 ~DOMEditor(); | 52 |
| 53 void trace(Visitor*); | |
| 51 | 54 |
| 52 bool insertBefore(Node* parentNode, PassRefPtr<Node>, Node* anchorNode, Exce ptionState&); | 55 bool insertBefore(Node* parentNode, PassRefPtr<Node>, Node* anchorNode, Exce ptionState&); |
| 53 bool removeChild(Node* parentNode, Node*, ExceptionState&); | 56 bool removeChild(Node* parentNode, Node*, ExceptionState&); |
| 54 bool setAttribute(Element*, const String& name, const String& value, Excepti onState&); | 57 bool setAttribute(Element*, const String& name, const String& value, Excepti onState&); |
| 55 bool removeAttribute(Element*, const String& name, ExceptionState&); | 58 bool removeAttribute(Element*, const String& name, ExceptionState&); |
| 56 bool setOuterHTML(Node*, const String& html, Node** newNode, ExceptionState& ); | 59 bool setOuterHTML(Node*, const String& html, Node** newNode, ExceptionState& ); |
| 57 bool replaceWholeText(Text*, const String& text, ExceptionState&); | 60 bool replaceWholeText(Text*, const String& text, ExceptionState&); |
| 58 bool replaceChild(Node* parentNode, PassRefPtr<Node> newNode, Node* oldNode, ExceptionState&); | 61 bool replaceChild(Node* parentNode, PassRefPtr<Node> newNode, Node* oldNode, ExceptionState&); |
| 59 bool setNodeValue(Node* parentNode, const String& value, ExceptionState&); | 62 bool setNodeValue(Node* parentNode, const String& value, ExceptionState&); |
| 60 | 63 |
| 61 bool insertBefore(Node* parentNode, PassRefPtr<Node>, Node* anchorNode, Erro rString*); | 64 bool insertBefore(Node* parentNode, PassRefPtr<Node>, Node* anchorNode, Erro rString*); |
| 62 bool removeChild(Node* parentNode, Node*, ErrorString*); | 65 bool removeChild(Node* parentNode, Node*, ErrorString*); |
| 63 bool setAttribute(Element*, const String& name, const String& value, ErrorSt ring*); | 66 bool setAttribute(Element*, const String& name, const String& value, ErrorSt ring*); |
| 64 bool removeAttribute(Element*, const String& name, ErrorString*); | 67 bool removeAttribute(Element*, const String& name, ErrorString*); |
| 65 bool setOuterHTML(Node*, const String& html, Node** newNode, ErrorString*); | 68 bool setOuterHTML(Node*, const String& html, Node** newNode, ErrorString*); |
| 66 bool replaceWholeText(Text*, const String& text, ErrorString*); | 69 bool replaceWholeText(Text*, const String& text, ErrorString*); |
| 67 | 70 |
| 68 private: | 71 private: |
| 69 class DOMAction; | 72 class DOMAction; |
| 70 class RemoveChildAction; | 73 class RemoveChildAction; |
| 71 class InsertBeforeAction; | 74 class InsertBeforeAction; |
| 72 class RemoveAttributeAction; | 75 class RemoveAttributeAction; |
| 73 class SetAttributeAction; | 76 class SetAttributeAction; |
| 74 class SetOuterHTMLAction; | 77 class SetOuterHTMLAction; |
| 75 class ReplaceWholeTextAction; | 78 class ReplaceWholeTextAction; |
| 76 class ReplaceChildNodeAction; | 79 class ReplaceChildNodeAction; |
| 77 class SetNodeValueAction; | 80 class SetNodeValueAction; |
| 78 | 81 |
| 79 InspectorHistory* m_history; | 82 RawPtrWillBeMember<InspectorHistory> m_history; |
| 80 }; | 83 }; |
| 81 | 84 |
| 82 | 85 |
| 83 } // namespace WebCore | 86 } // namespace WebCore |
| 84 | 87 |
| 85 #endif // !defined(DOMEditor_h) | 88 #endif // !defined(DOMEditor_h) |
| OLD | NEW |