| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2005, 2006, 2007, 2008 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 #include "core/editing/CompositeEditCommand.h" | 27 #include "core/editing/CompositeEditCommand.h" |
| 28 | 28 |
| 29 #include "bindings/core/v8/ExceptionStatePlaceholder.h" | 29 #include "bindings/core/v8/ExceptionStatePlaceholder.h" |
| 30 #include "core/HTMLNames.h" | 30 #include "core/HTMLNames.h" |
| 31 #include "core/dom/Document.h" | 31 #include "core/dom/Document.h" |
| 32 #include "core/dom/DocumentFragment.h" | 32 #include "core/dom/DocumentFragment.h" |
| 33 #include "core/dom/DocumentMarkerController.h" | |
| 34 #include "core/dom/ElementTraversal.h" | 33 #include "core/dom/ElementTraversal.h" |
| 35 #include "core/dom/NodeTraversal.h" | 34 #include "core/dom/NodeTraversal.h" |
| 36 #include "core/dom/Range.h" | 35 #include "core/dom/Range.h" |
| 37 #include "core/dom/Text.h" | 36 #include "core/dom/Text.h" |
| 38 #include "core/editing/AppendNodeCommand.h" | 37 #include "core/editing/AppendNodeCommand.h" |
| 39 #include "core/editing/ApplyStyleCommand.h" | 38 #include "core/editing/ApplyStyleCommand.h" |
| 40 #include "core/editing/DeleteFromTextNodeCommand.h" | 39 #include "core/editing/DeleteFromTextNodeCommand.h" |
| 41 #include "core/editing/DeleteSelectionCommand.h" | 40 #include "core/editing/DeleteSelectionCommand.h" |
| 41 #include "core/editing/DocumentMarkerController.h" |
| 42 #include "core/editing/EditingUtilities.h" | 42 #include "core/editing/EditingUtilities.h" |
| 43 #include "core/editing/Editor.h" | 43 #include "core/editing/Editor.h" |
| 44 #include "core/editing/InsertIntoTextNodeCommand.h" | 44 #include "core/editing/InsertIntoTextNodeCommand.h" |
| 45 #include "core/editing/InsertLineBreakCommand.h" | 45 #include "core/editing/InsertLineBreakCommand.h" |
| 46 #include "core/editing/InsertNodeBeforeCommand.h" | 46 #include "core/editing/InsertNodeBeforeCommand.h" |
| 47 #include "core/editing/InsertParagraphSeparatorCommand.h" | 47 #include "core/editing/InsertParagraphSeparatorCommand.h" |
| 48 #include "core/editing/MergeIdenticalElementsCommand.h" | 48 #include "core/editing/MergeIdenticalElementsCommand.h" |
| 49 #include "core/editing/PlainTextRange.h" | 49 #include "core/editing/PlainTextRange.h" |
| 50 #include "core/editing/RemoveCSSPropertyCommand.h" | 50 #include "core/editing/RemoveCSSPropertyCommand.h" |
| 51 #include "core/editing/RemoveNodeCommand.h" | 51 #include "core/editing/RemoveNodeCommand.h" |
| (...skipping 1447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1499 } | 1499 } |
| 1500 | 1500 |
| 1501 DEFINE_TRACE(CompositeEditCommand) | 1501 DEFINE_TRACE(CompositeEditCommand) |
| 1502 { | 1502 { |
| 1503 visitor->trace(m_commands); | 1503 visitor->trace(m_commands); |
| 1504 visitor->trace(m_composition); | 1504 visitor->trace(m_composition); |
| 1505 EditCommand::trace(visitor); | 1505 EditCommand::trace(visitor); |
| 1506 } | 1506 } |
| 1507 | 1507 |
| 1508 } // namespace blink | 1508 } // namespace blink |
| OLD | NEW |