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 26 matching lines...) Expand all Loading... |
37 namespace WebCore { | 37 namespace WebCore { |
38 | 38 |
39 class Element; | 39 class Element; |
40 class ExceptionState; | 40 class ExceptionState; |
41 class InspectorHistory; | 41 class InspectorHistory; |
42 class Node; | 42 class Node; |
43 class Text; | 43 class Text; |
44 | 44 |
45 typedef String ErrorString; | 45 typedef String ErrorString; |
46 | 46 |
47 class DOMEditor { | 47 class DOMEditor FINAL : public NoBaseWillBeGarbageCollected<DOMEditor> { |
48 WTF_MAKE_NONCOPYABLE(DOMEditor); WTF_MAKE_FAST_ALLOCATED; | 48 WTF_MAKE_NONCOPYABLE(DOMEditor); |
| 49 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; |
49 public: | 50 public: |
50 explicit DOMEditor(InspectorHistory*); | 51 explicit DOMEditor(InspectorHistory*); |
51 ~DOMEditor(); | 52 |
| 53 void trace(Visitor*); |
52 | 54 |
53 bool insertBefore(Node* parentNode, PassRefPtrWillBeRawPtr<Node>, Node* anch
orNode, ExceptionState&); | 55 bool insertBefore(Node* parentNode, PassRefPtrWillBeRawPtr<Node>, Node* anch
orNode, ExceptionState&); |
54 bool removeChild(Node* parentNode, Node*, ExceptionState&); | 56 bool removeChild(Node* parentNode, Node*, ExceptionState&); |
55 bool setAttribute(Element*, const String& name, const String& value, Excepti
onState&); | 57 bool setAttribute(Element*, const String& name, const String& value, Excepti
onState&); |
56 bool removeAttribute(Element*, const String& name, ExceptionState&); | 58 bool removeAttribute(Element*, const String& name, ExceptionState&); |
57 bool setOuterHTML(Node*, const String& html, Node** newNode, ExceptionState&
); | 59 bool setOuterHTML(Node*, const String& html, Node** newNode, ExceptionState&
); |
58 bool replaceWholeText(Text*, const String& text, ExceptionState&); | 60 bool replaceWholeText(Text*, const String& text, ExceptionState&); |
59 bool replaceChild(Node* parentNode, PassRefPtrWillBeRawPtr<Node> newNode, No
de* oldNode, ExceptionState&); | 61 bool replaceChild(Node* parentNode, PassRefPtrWillBeRawPtr<Node> newNode, No
de* oldNode, ExceptionState&); |
60 bool setNodeValue(Node* parentNode, const String& value, ExceptionState&); | 62 bool setNodeValue(Node* parentNode, const String& value, ExceptionState&); |
61 | 63 |
62 bool insertBefore(Node* parentNode, PassRefPtrWillBeRawPtr<Node>, Node* anch
orNode, ErrorString*); | 64 bool insertBefore(Node* parentNode, PassRefPtrWillBeRawPtr<Node>, Node* anch
orNode, ErrorString*); |
63 bool removeChild(Node* parentNode, Node*, ErrorString*); | 65 bool removeChild(Node* parentNode, Node*, ErrorString*); |
64 bool setAttribute(Element*, const String& name, const String& value, ErrorSt
ring*); | 66 bool setAttribute(Element*, const String& name, const String& value, ErrorSt
ring*); |
65 bool removeAttribute(Element*, const String& name, ErrorString*); | 67 bool removeAttribute(Element*, const String& name, ErrorString*); |
66 bool setOuterHTML(Node*, const String& html, Node** newNode, ErrorString*); | 68 bool setOuterHTML(Node*, const String& html, Node** newNode, ErrorString*); |
67 bool replaceWholeText(Text*, const String& text, ErrorString*); | 69 bool replaceWholeText(Text*, const String& text, ErrorString*); |
68 | 70 |
69 private: | 71 private: |
70 class DOMAction; | 72 class DOMAction; |
71 class RemoveChildAction; | 73 class RemoveChildAction; |
72 class InsertBeforeAction; | 74 class InsertBeforeAction; |
73 class RemoveAttributeAction; | 75 class RemoveAttributeAction; |
74 class SetAttributeAction; | 76 class SetAttributeAction; |
75 class SetOuterHTMLAction; | 77 class SetOuterHTMLAction; |
76 class ReplaceWholeTextAction; | 78 class ReplaceWholeTextAction; |
77 class ReplaceChildNodeAction; | 79 class ReplaceChildNodeAction; |
78 class SetNodeValueAction; | 80 class SetNodeValueAction; |
79 | 81 |
80 InspectorHistory* m_history; | 82 RawPtrWillBeMember<InspectorHistory> m_history; |
81 }; | 83 }; |
82 | 84 |
83 | 85 |
84 } // namespace WebCore | 86 } // namespace WebCore |
85 | 87 |
86 #endif // !defined(DOMEditor_h) | 88 #endif // !defined(DOMEditor_h) |
OLD | NEW |