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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 #include "core/editing/InsertLineBreakCommand.h" | 44 #include "core/editing/InsertLineBreakCommand.h" |
45 #include "core/editing/InsertNodeBeforeCommand.h" | 45 #include "core/editing/InsertNodeBeforeCommand.h" |
46 #include "core/editing/InsertParagraphSeparatorCommand.h" | 46 #include "core/editing/InsertParagraphSeparatorCommand.h" |
47 #include "core/editing/MergeIdenticalElementsCommand.h" | 47 #include "core/editing/MergeIdenticalElementsCommand.h" |
48 #include "core/editing/PlainTextRange.h" | 48 #include "core/editing/PlainTextRange.h" |
49 #include "core/editing/RemoveCSSPropertyCommand.h" | 49 #include "core/editing/RemoveCSSPropertyCommand.h" |
50 #include "core/editing/RemoveNodeCommand.h" | 50 #include "core/editing/RemoveNodeCommand.h" |
51 #include "core/editing/RemoveNodePreservingChildrenCommand.h" | 51 #include "core/editing/RemoveNodePreservingChildrenCommand.h" |
52 #include "core/editing/ReplaceNodeWithSpanCommand.h" | 52 #include "core/editing/ReplaceNodeWithSpanCommand.h" |
53 #include "core/editing/ReplaceSelectionCommand.h" | 53 #include "core/editing/ReplaceSelectionCommand.h" |
54 #include "core/editing/Serialization.h" | |
55 #include "core/editing/SetNodeAttributeCommand.h" | 54 #include "core/editing/SetNodeAttributeCommand.h" |
56 #include "core/editing/SplitElementCommand.h" | 55 #include "core/editing/SplitElementCommand.h" |
57 #include "core/editing/SplitTextNodeCommand.h" | 56 #include "core/editing/SplitTextNodeCommand.h" |
58 #include "core/editing/SplitTextNodeContainingElementCommand.h" | 57 #include "core/editing/SplitTextNodeContainingElementCommand.h" |
59 #include "core/editing/VisibleUnits.h" | 58 #include "core/editing/VisibleUnits.h" |
60 #include "core/editing/WrapContentsInDummySpanCommand.h" | 59 #include "core/editing/WrapContentsInDummySpanCommand.h" |
61 #include "core/editing/iterators/TextIterator.h" | 60 #include "core/editing/iterators/TextIterator.h" |
62 #include "core/editing/markers/DocumentMarkerController.h" | 61 #include "core/editing/markers/DocumentMarkerController.h" |
| 62 #include "core/editing/serializers/Serialization.h" |
63 #include "core/editing/spellcheck/SpellChecker.h" | 63 #include "core/editing/spellcheck/SpellChecker.h" |
64 #include "core/events/ScopedEventQueue.h" | 64 #include "core/events/ScopedEventQueue.h" |
65 #include "core/frame/LocalFrame.h" | 65 #include "core/frame/LocalFrame.h" |
66 #include "core/html/HTMLBRElement.h" | 66 #include "core/html/HTMLBRElement.h" |
67 #include "core/html/HTMLDivElement.h" | 67 #include "core/html/HTMLDivElement.h" |
68 #include "core/html/HTMLElement.h" | 68 #include "core/html/HTMLElement.h" |
69 #include "core/html/HTMLLIElement.h" | 69 #include "core/html/HTMLLIElement.h" |
70 #include "core/html/HTMLQuoteElement.h" | 70 #include "core/html/HTMLQuoteElement.h" |
71 #include "core/html/HTMLSpanElement.h" | 71 #include "core/html/HTMLSpanElement.h" |
72 #include "core/layout/LayoutBlock.h" | 72 #include "core/layout/LayoutBlock.h" |
(...skipping 1426 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 |