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

Side by Side Diff: Source/core/inspector/DOMEditor.cpp

Issue 298873004: Oilpan: Move DOMEditor to the heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 m_parentNode->insertBefore(m_node.get(), m_anchorNode.get(), exceptionSt ate); 67 m_parentNode->insertBefore(m_node.get(), m_anchorNode.get(), exceptionSt ate);
68 return !exceptionState.hadException(); 68 return !exceptionState.hadException();
69 } 69 }
70 70
71 virtual bool redo(ExceptionState& exceptionState) OVERRIDE 71 virtual bool redo(ExceptionState& exceptionState) OVERRIDE
72 { 72 {
73 m_parentNode->removeChild(m_node.get(), exceptionState); 73 m_parentNode->removeChild(m_node.get(), exceptionState);
74 return !exceptionState.hadException(); 74 return !exceptionState.hadException();
75 } 75 }
76 76
77 virtual void trace(Visitor* visitor) OVERRIDE
78 {
79 visitor->trace(m_parentNode);
80 visitor->trace(m_node);
81 visitor->trace(m_anchorNode);
82 InspectorHistory::Action::trace(visitor);
83 }
84
77 private: 85 private:
78 RefPtr<Node> m_parentNode; 86 RefPtrWillBeMember<Node> m_parentNode;
79 RefPtr<Node> m_node; 87 RefPtrWillBeMember<Node> m_node;
80 RefPtr<Node> m_anchorNode; 88 RefPtrWillBeMember<Node> m_anchorNode;
81 }; 89 };
82 90
83 class DOMEditor::InsertBeforeAction FINAL : public InspectorHistory::Action { 91 class DOMEditor::InsertBeforeAction FINAL : public InspectorHistory::Action {
84 WTF_MAKE_NONCOPYABLE(InsertBeforeAction); 92 WTF_MAKE_NONCOPYABLE(InsertBeforeAction);
85 public: 93 public:
86 InsertBeforeAction(Node* parentNode, PassRefPtr<Node> node, Node* anchorNode ) 94 InsertBeforeAction(Node* parentNode, PassRefPtr<Node> node, Node* anchorNode )
87 : InspectorHistory::Action("InsertBefore") 95 : InspectorHistory::Action("InsertBefore")
88 , m_parentNode(parentNode) 96 , m_parentNode(parentNode)
89 , m_node(node) 97 , m_node(node)
90 , m_anchorNode(anchorNode) 98 , m_anchorNode(anchorNode)
91 { 99 {
92 } 100 }
93 101
94 virtual bool perform(ExceptionState& exceptionState) OVERRIDE 102 virtual bool perform(ExceptionState& exceptionState) OVERRIDE
95 { 103 {
96 if (m_node->parentNode()) { 104 if (m_node->parentNode()) {
97 m_removeChildAction = adoptRef(new RemoveChildAction(m_node->parentN ode(), m_node.get())); 105 m_removeChildAction = adoptRefWillBeNoop(new RemoveChildAction(m_nod e->parentNode(), m_node.get()));
98 if (!m_removeChildAction->perform(exceptionState)) 106 if (!m_removeChildAction->perform(exceptionState))
99 return false; 107 return false;
100 } 108 }
101 m_parentNode->insertBefore(m_node.get(), m_anchorNode.get(), exceptionSt ate); 109 m_parentNode->insertBefore(m_node.get(), m_anchorNode.get(), exceptionSt ate);
102 return !exceptionState.hadException(); 110 return !exceptionState.hadException();
103 } 111 }
104 112
105 virtual bool undo(ExceptionState& exceptionState) OVERRIDE 113 virtual bool undo(ExceptionState& exceptionState) OVERRIDE
106 { 114 {
107 m_parentNode->removeChild(m_node.get(), exceptionState); 115 m_parentNode->removeChild(m_node.get(), exceptionState);
108 if (exceptionState.hadException()) 116 if (exceptionState.hadException())
109 return false; 117 return false;
110 if (m_removeChildAction) 118 if (m_removeChildAction)
111 return m_removeChildAction->undo(exceptionState); 119 return m_removeChildAction->undo(exceptionState);
112 return true; 120 return true;
113 } 121 }
114 122
115 virtual bool redo(ExceptionState& exceptionState) OVERRIDE 123 virtual bool redo(ExceptionState& exceptionState) OVERRIDE
116 { 124 {
117 if (m_removeChildAction && !m_removeChildAction->redo(exceptionState)) 125 if (m_removeChildAction && !m_removeChildAction->redo(exceptionState))
118 return false; 126 return false;
119 m_parentNode->insertBefore(m_node.get(), m_anchorNode.get(), exceptionSt ate); 127 m_parentNode->insertBefore(m_node.get(), m_anchorNode.get(), exceptionSt ate);
120 return !exceptionState.hadException(); 128 return !exceptionState.hadException();
121 } 129 }
122 130
131 virtual void trace(Visitor* visitor) OVERRIDE
132 {
133 visitor->trace(m_parentNode);
134 visitor->trace(m_node);
135 visitor->trace(m_anchorNode);
136 visitor->trace(m_removeChildAction);
137 InspectorHistory::Action::trace(visitor);
138 }
139
123 private: 140 private:
124 RefPtr<Node> m_parentNode; 141 RefPtrWillBeMember<Node> m_parentNode;
125 RefPtr<Node> m_node; 142 RefPtrWillBeMember<Node> m_node;
126 RefPtr<Node> m_anchorNode; 143 RefPtrWillBeMember<Node> m_anchorNode;
127 RefPtr<RemoveChildAction> m_removeChildAction; 144 RefPtrWillBeMember<RemoveChildAction> m_removeChildAction;
128 }; 145 };
129 146
130 class DOMEditor::RemoveAttributeAction FINAL : public InspectorHistory::Action { 147 class DOMEditor::RemoveAttributeAction FINAL : public InspectorHistory::Action {
131 WTF_MAKE_NONCOPYABLE(RemoveAttributeAction); 148 WTF_MAKE_NONCOPYABLE(RemoveAttributeAction);
132 public: 149 public:
133 RemoveAttributeAction(Element* element, const AtomicString& name) 150 RemoveAttributeAction(Element* element, const AtomicString& name)
134 : InspectorHistory::Action("RemoveAttribute") 151 : InspectorHistory::Action("RemoveAttribute")
135 , m_element(element) 152 , m_element(element)
136 , m_name(name) 153 , m_name(name)
137 { 154 {
(...skipping 10 matching lines...) Expand all
148 m_element->setAttribute(m_name, m_value, exceptionState); 165 m_element->setAttribute(m_name, m_value, exceptionState);
149 return true; 166 return true;
150 } 167 }
151 168
152 virtual bool redo(ExceptionState&) OVERRIDE 169 virtual bool redo(ExceptionState&) OVERRIDE
153 { 170 {
154 m_element->removeAttribute(m_name); 171 m_element->removeAttribute(m_name);
155 return true; 172 return true;
156 } 173 }
157 174
175 virtual void trace(Visitor* visitor) OVERRIDE
176 {
177 visitor->trace(m_element);
178 InspectorHistory::Action::trace(visitor);
179 }
180
158 private: 181 private:
159 RefPtr<Element> m_element; 182 RefPtrWillBeMember<Element> m_element;
160 AtomicString m_name; 183 AtomicString m_name;
161 AtomicString m_value; 184 AtomicString m_value;
162 }; 185 };
163 186
164 class DOMEditor::SetAttributeAction FINAL : public InspectorHistory::Action { 187 class DOMEditor::SetAttributeAction FINAL : public InspectorHistory::Action {
165 WTF_MAKE_NONCOPYABLE(SetAttributeAction); 188 WTF_MAKE_NONCOPYABLE(SetAttributeAction);
166 public: 189 public:
167 SetAttributeAction(Element* element, const AtomicString& name, const AtomicS tring& value) 190 SetAttributeAction(Element* element, const AtomicString& name, const AtomicS tring& value)
168 : InspectorHistory::Action("SetAttribute") 191 : InspectorHistory::Action("SetAttribute")
169 , m_element(element) 192 , m_element(element)
(...skipping 20 matching lines...) Expand all
190 m_element->removeAttribute(m_name); 213 m_element->removeAttribute(m_name);
191 return true; 214 return true;
192 } 215 }
193 216
194 virtual bool redo(ExceptionState& exceptionState) OVERRIDE 217 virtual bool redo(ExceptionState& exceptionState) OVERRIDE
195 { 218 {
196 m_element->setAttribute(m_name, m_value, exceptionState); 219 m_element->setAttribute(m_name, m_value, exceptionState);
197 return true; 220 return true;
198 } 221 }
199 222
223 virtual void trace(Visitor* visitor) OVERRIDE
224 {
225 visitor->trace(m_element);
226 InspectorHistory::Action::trace(visitor);
227 }
228
200 private: 229 private:
201 RefPtr<Element> m_element; 230 RefPtrWillBeMember<Element> m_element;
202 AtomicString m_name; 231 AtomicString m_name;
203 AtomicString m_value; 232 AtomicString m_value;
204 bool m_hadAttribute; 233 bool m_hadAttribute;
205 AtomicString m_oldValue; 234 AtomicString m_oldValue;
206 }; 235 };
207 236
208 class DOMEditor::SetOuterHTMLAction FINAL : public InspectorHistory::Action { 237 class DOMEditor::SetOuterHTMLAction FINAL : public InspectorHistory::Action {
209 WTF_MAKE_NONCOPYABLE(SetOuterHTMLAction); 238 WTF_MAKE_NONCOPYABLE(SetOuterHTMLAction);
210 public: 239 public:
211 SetOuterHTMLAction(Node* node, const String& html) 240 SetOuterHTMLAction(Node* node, const String& html)
212 : InspectorHistory::Action("SetOuterHTML") 241 : InspectorHistory::Action("SetOuterHTML")
213 , m_node(node) 242 , m_node(node)
214 , m_nextSibling(node->nextSibling()) 243 , m_nextSibling(node->nextSibling())
215 , m_html(html) 244 , m_html(html)
216 , m_newNode(0) 245 , m_newNode(0)
217 , m_history(adoptPtr(new InspectorHistory())) 246 , m_history(adoptPtrWillBeNoop(new InspectorHistory()))
218 , m_domEditor(adoptPtr(new DOMEditor(m_history.get()))) 247 , m_domEditor(adoptPtrWillBeNoop(new DOMEditor(m_history.get())))
219 { 248 {
220 } 249 }
221 250
222 virtual bool perform(ExceptionState& exceptionState) OVERRIDE 251 virtual bool perform(ExceptionState& exceptionState) OVERRIDE
223 { 252 {
224 m_oldHTML = createMarkup(m_node.get()); 253 m_oldHTML = createMarkup(m_node.get());
225 ASSERT(m_node->ownerDocument()); 254 ASSERT(m_node->ownerDocument());
226 DOMPatchSupport domPatchSupport(m_domEditor.get(), *m_node->ownerDocumen t()); 255 DOMPatchSupport domPatchSupport(m_domEditor.get(), *m_node->ownerDocumen t());
227 m_newNode = domPatchSupport.patchNode(m_node.get(), m_html, exceptionSta te); 256 m_newNode = domPatchSupport.patchNode(m_node.get(), m_html, exceptionSta te);
228 return !exceptionState.hadException(); 257 return !exceptionState.hadException();
229 } 258 }
230 259
231 virtual bool undo(ExceptionState& exceptionState) OVERRIDE 260 virtual bool undo(ExceptionState& exceptionState) OVERRIDE
232 { 261 {
233 return m_history->undo(exceptionState); 262 return m_history->undo(exceptionState);
234 } 263 }
235 264
236 virtual bool redo(ExceptionState& exceptionState) OVERRIDE 265 virtual bool redo(ExceptionState& exceptionState) OVERRIDE
237 { 266 {
238 return m_history->redo(exceptionState); 267 return m_history->redo(exceptionState);
239 } 268 }
240 269
241 Node* newNode() 270 Node* newNode()
242 { 271 {
243 return m_newNode; 272 return m_newNode;
244 } 273 }
245 274
275 virtual void trace(Visitor* visitor) OVERRIDE
276 {
277 visitor->trace(m_node);
278 visitor->trace(m_nextSibling);
279 visitor->trace(m_history);
280 visitor->trace(m_domEditor);
281 InspectorHistory::Action::trace(visitor);
282 }
283
246 private: 284 private:
247 RefPtr<Node> m_node; 285 RefPtrWillBeMember<Node> m_node;
248 RefPtr<Node> m_nextSibling; 286 RefPtrWillBeMember<Node> m_nextSibling;
249 String m_html; 287 String m_html;
250 String m_oldHTML; 288 String m_oldHTML;
251 Node* m_newNode; 289 Node* m_newNode;
haraken 2014/05/22 20:19:31 I think this should be RawPtrWillBeMember. (I wond
keishi 2014/05/23 02:22:20 Done.
252 OwnPtr<InspectorHistory> m_history; 290 OwnPtrWillBeMember<InspectorHistory> m_history;
253 OwnPtr<DOMEditor> m_domEditor; 291 OwnPtrWillBeMember<DOMEditor> m_domEditor;
254 }; 292 };
255 293
256 class DOMEditor::ReplaceWholeTextAction FINAL : public InspectorHistory::Action { 294 class DOMEditor::ReplaceWholeTextAction FINAL : public InspectorHistory::Action {
257 WTF_MAKE_NONCOPYABLE(ReplaceWholeTextAction); 295 WTF_MAKE_NONCOPYABLE(ReplaceWholeTextAction);
258 public: 296 public:
259 ReplaceWholeTextAction(Text* textNode, const String& text) 297 ReplaceWholeTextAction(Text* textNode, const String& text)
260 : InspectorHistory::Action("ReplaceWholeText") 298 : InspectorHistory::Action("ReplaceWholeText")
261 , m_textNode(textNode) 299 , m_textNode(textNode)
262 , m_text(text) 300 , m_text(text)
263 { 301 {
(...skipping 10 matching lines...) Expand all
274 m_textNode->replaceWholeText(m_oldText); 312 m_textNode->replaceWholeText(m_oldText);
275 return true; 313 return true;
276 } 314 }
277 315
278 virtual bool redo(ExceptionState&) OVERRIDE 316 virtual bool redo(ExceptionState&) OVERRIDE
279 { 317 {
280 m_textNode->replaceWholeText(m_text); 318 m_textNode->replaceWholeText(m_text);
281 return true; 319 return true;
282 } 320 }
283 321
322 virtual void trace(Visitor* visitor) OVERRIDE
323 {
324 visitor->trace(m_textNode);
325 InspectorHistory::Action::trace(visitor);
326 }
327
284 private: 328 private:
285 RefPtrWillBePersistent<Text> m_textNode; 329 RefPtrWillBeMember<Text> m_textNode;
286 String m_text; 330 String m_text;
287 String m_oldText; 331 String m_oldText;
288 }; 332 };
289 333
290 class DOMEditor::ReplaceChildNodeAction FINAL : public InspectorHistory::Action { 334 class DOMEditor::ReplaceChildNodeAction FINAL : public InspectorHistory::Action {
291 WTF_MAKE_NONCOPYABLE(ReplaceChildNodeAction); 335 WTF_MAKE_NONCOPYABLE(ReplaceChildNodeAction);
292 public: 336 public:
293 ReplaceChildNodeAction(Node* parentNode, PassRefPtr<Node> newNode, Node* old Node) 337 ReplaceChildNodeAction(Node* parentNode, PassRefPtr<Node> newNode, Node* old Node)
294 : InspectorHistory::Action("ReplaceChildNode") 338 : InspectorHistory::Action("ReplaceChildNode")
295 , m_parentNode(parentNode) 339 , m_parentNode(parentNode)
(...skipping 12 matching lines...) Expand all
308 m_parentNode->replaceChild(m_oldNode, m_newNode.get(), exceptionState); 352 m_parentNode->replaceChild(m_oldNode, m_newNode.get(), exceptionState);
309 return !exceptionState.hadException(); 353 return !exceptionState.hadException();
310 } 354 }
311 355
312 virtual bool redo(ExceptionState& exceptionState) OVERRIDE 356 virtual bool redo(ExceptionState& exceptionState) OVERRIDE
313 { 357 {
314 m_parentNode->replaceChild(m_newNode, m_oldNode.get(), exceptionState); 358 m_parentNode->replaceChild(m_newNode, m_oldNode.get(), exceptionState);
315 return !exceptionState.hadException(); 359 return !exceptionState.hadException();
316 } 360 }
317 361
362 virtual void trace(Visitor* visitor) OVERRIDE
363 {
364 visitor->trace(m_parentNode);
365 visitor->trace(m_newNode);
366 visitor->trace(m_oldNode);
367 InspectorHistory::Action::trace(visitor);
368 }
369
318 private: 370 private:
319 RefPtr<Node> m_parentNode; 371 RefPtrWillBeMember<Node> m_parentNode;
320 RefPtr<Node> m_newNode; 372 RefPtrWillBeMember<Node> m_newNode;
321 RefPtr<Node> m_oldNode; 373 RefPtrWillBeMember<Node> m_oldNode;
322 }; 374 };
323 375
324 class DOMEditor::SetNodeValueAction FINAL : public InspectorHistory::Action { 376 class DOMEditor::SetNodeValueAction FINAL : public InspectorHistory::Action {
325 WTF_MAKE_NONCOPYABLE(SetNodeValueAction); 377 WTF_MAKE_NONCOPYABLE(SetNodeValueAction);
326 public: 378 public:
327 SetNodeValueAction(Node* node, const String& value) 379 SetNodeValueAction(Node* node, const String& value)
328 : InspectorHistory::Action("SetNodeValue") 380 : InspectorHistory::Action("SetNodeValue")
329 , m_node(node) 381 , m_node(node)
330 , m_value(value) 382 , m_value(value)
331 { 383 {
(...skipping 10 matching lines...) Expand all
342 m_node->setNodeValue(m_oldValue); 394 m_node->setNodeValue(m_oldValue);
343 return true; 395 return true;
344 } 396 }
345 397
346 virtual bool redo(ExceptionState&) OVERRIDE 398 virtual bool redo(ExceptionState&) OVERRIDE
347 { 399 {
348 m_node->setNodeValue(m_value); 400 m_node->setNodeValue(m_value);
349 return true; 401 return true;
350 } 402 }
351 403
404 virtual void trace(Visitor* visitor) OVERRIDE
405 {
406 visitor->trace(m_node);
407 InspectorHistory::Action::trace(visitor);
408 }
409
352 private: 410 private:
353 RefPtr<Node> m_node; 411 RefPtrWillBeMember<Node> m_node;
354 String m_value; 412 String m_value;
355 String m_oldValue; 413 String m_oldValue;
356 }; 414 };
357 415
358 DOMEditor::DOMEditor(InspectorHistory* history) : m_history(history) { } 416 DOMEditor::DOMEditor(InspectorHistory* history) : m_history(history) { }
359 417
360 DOMEditor::~DOMEditor() { }
361
362 bool DOMEditor::insertBefore(Node* parentNode, PassRefPtr<Node> node, Node* anch orNode, ExceptionState& exceptionState) 418 bool DOMEditor::insertBefore(Node* parentNode, PassRefPtr<Node> node, Node* anch orNode, ExceptionState& exceptionState)
363 { 419 {
364 return m_history->perform(adoptRef(new InsertBeforeAction(parentNode, node, anchorNode)), exceptionState); 420 return m_history->perform(adoptRefWillBeNoop(new InsertBeforeAction(parentNo de, node, anchorNode)), exceptionState);
365 } 421 }
366 422
367 bool DOMEditor::removeChild(Node* parentNode, Node* node, ExceptionState& except ionState) 423 bool DOMEditor::removeChild(Node* parentNode, Node* node, ExceptionState& except ionState)
368 { 424 {
369 return m_history->perform(adoptRef(new RemoveChildAction(parentNode, node)), exceptionState); 425 return m_history->perform(adoptRefWillBeNoop(new RemoveChildAction(parentNod e, node)), exceptionState);
370 } 426 }
371 427
372 bool DOMEditor::setAttribute(Element* element, const String& name, const String& value, ExceptionState& exceptionState) 428 bool DOMEditor::setAttribute(Element* element, const String& name, const String& value, ExceptionState& exceptionState)
373 { 429 {
374 return m_history->perform(adoptRef(new SetAttributeAction(element, AtomicStr ing(name), AtomicString(value))), exceptionState); 430 return m_history->perform(adoptRefWillBeNoop(new SetAttributeAction(element, AtomicString(name), AtomicString(value))), exceptionState);
375 } 431 }
376 432
377 bool DOMEditor::removeAttribute(Element* element, const String& name, ExceptionS tate& exceptionState) 433 bool DOMEditor::removeAttribute(Element* element, const String& name, ExceptionS tate& exceptionState)
378 { 434 {
379 return m_history->perform(adoptRef(new RemoveAttributeAction(element, Atomic String(name))), exceptionState); 435 return m_history->perform(adoptRefWillBeNoop(new RemoveAttributeAction(eleme nt, AtomicString(name))), exceptionState);
380 } 436 }
381 437
382 bool DOMEditor::setOuterHTML(Node* node, const String& html, Node** newNode, Exc eptionState& exceptionState) 438 bool DOMEditor::setOuterHTML(Node* node, const String& html, Node** newNode, Exc eptionState& exceptionState)
383 { 439 {
384 RefPtr<SetOuterHTMLAction> action = adoptRef(new SetOuterHTMLAction(node, ht ml)); 440 RefPtrWillBeRawPtr<SetOuterHTMLAction> action = adoptRefWillBeNoop(new SetOu terHTMLAction(node, html));
385 bool result = m_history->perform(action, exceptionState); 441 bool result = m_history->perform(action, exceptionState);
386 if (result) 442 if (result)
387 *newNode = action->newNode(); 443 *newNode = action->newNode();
388 return result; 444 return result;
389 } 445 }
390 446
391 bool DOMEditor::replaceWholeText(Text* textNode, const String& text, ExceptionSt ate& exceptionState) 447 bool DOMEditor::replaceWholeText(Text* textNode, const String& text, ExceptionSt ate& exceptionState)
392 { 448 {
393 return m_history->perform(adoptRef(new ReplaceWholeTextAction(textNode, text )), exceptionState); 449 return m_history->perform(adoptRefWillBeNoop(new ReplaceWholeTextAction(text Node, text)), exceptionState);
394 } 450 }
395 451
396 bool DOMEditor::replaceChild(Node* parentNode, PassRefPtr<Node> newNode, Node* o ldNode, ExceptionState& exceptionState) 452 bool DOMEditor::replaceChild(Node* parentNode, PassRefPtr<Node> newNode, Node* o ldNode, ExceptionState& exceptionState)
397 { 453 {
398 return m_history->perform(adoptRef(new ReplaceChildNodeAction(parentNode, ne wNode, oldNode)), exceptionState); 454 return m_history->perform(adoptRefWillBeNoop(new ReplaceChildNodeAction(pare ntNode, newNode, oldNode)), exceptionState);
399 } 455 }
400 456
401 bool DOMEditor::setNodeValue(Node* node, const String& value, ExceptionState& ex ceptionState) 457 bool DOMEditor::setNodeValue(Node* node, const String& value, ExceptionState& ex ceptionState)
402 { 458 {
403 return m_history->perform(adoptRef(new SetNodeValueAction(node, value)), exc eptionState); 459 return m_history->perform(adoptRefWillBeNoop(new SetNodeValueAction(node, va lue)), exceptionState);
404 } 460 }
405 461
406 static void populateErrorString(ExceptionState& exceptionState, ErrorString* err orString) 462 static void populateErrorString(ExceptionState& exceptionState, ErrorString* err orString)
407 { 463 {
408 if (exceptionState.hadException()) 464 if (exceptionState.hadException())
409 *errorString = DOMException::getErrorName(exceptionState.code()); 465 *errorString = DOMException::getErrorName(exceptionState.code());
410 } 466 }
411 467
412 bool DOMEditor::insertBefore(Node* parentNode, PassRefPtr<Node> node, Node* anch orNode, ErrorString* errorString) 468 bool DOMEditor::insertBefore(Node* parentNode, PassRefPtr<Node> node, Node* anch orNode, ErrorString* errorString)
413 { 469 {
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 } 506 }
451 507
452 bool DOMEditor::replaceWholeText(Text* textNode, const String& text, ErrorString * errorString) 508 bool DOMEditor::replaceWholeText(Text* textNode, const String& text, ErrorString * errorString)
453 { 509 {
454 TrackExceptionState exceptionState; 510 TrackExceptionState exceptionState;
455 bool result = replaceWholeText(textNode, text, exceptionState); 511 bool result = replaceWholeText(textNode, text, exceptionState);
456 populateErrorString(exceptionState, errorString); 512 populateErrorString(exceptionState, errorString);
457 return result; 513 return result;
458 } 514 }
459 515
516 void DOMEditor::trace(Visitor* visitor)
517 {
518 visitor->trace(m_history);
519 }
520
460 } // namespace WebCore 521 } // namespace WebCore
461 522
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698