OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2009, 2010, 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2009, 2010, 2011 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 23 matching lines...) Expand all Loading... |
34 #include "core/css/CSSStyleDeclaration.h" | 34 #include "core/css/CSSStyleDeclaration.h" |
35 #include "core/css/StylePropertySet.h" | 35 #include "core/css/StylePropertySet.h" |
36 #include "core/dom/Document.h" | 36 #include "core/dom/Document.h" |
37 #include "core/dom/DocumentFragment.h" | 37 #include "core/dom/DocumentFragment.h" |
38 #include "core/dom/Element.h" | 38 #include "core/dom/Element.h" |
39 #include "core/dom/Text.h" | 39 #include "core/dom/Text.h" |
40 #include "core/editing/ApplyStyleCommand.h" | 40 #include "core/editing/ApplyStyleCommand.h" |
41 #include "core/editing/BreakBlockquoteCommand.h" | 41 #include "core/editing/BreakBlockquoteCommand.h" |
42 #include "core/editing/EditingUtilities.h" | 42 #include "core/editing/EditingUtilities.h" |
43 #include "core/editing/FrameSelection.h" | 43 #include "core/editing/FrameSelection.h" |
44 #include "core/editing/HTMLInterchange.h" | |
45 #include "core/editing/Serialization.h" | |
46 #include "core/editing/SimplifyMarkupCommand.h" | 44 #include "core/editing/SimplifyMarkupCommand.h" |
47 #include "core/editing/SmartReplace.h" | 45 #include "core/editing/SmartReplace.h" |
48 #include "core/editing/VisibleUnits.h" | 46 #include "core/editing/VisibleUnits.h" |
49 #include "core/editing/iterators/TextIterator.h" | 47 #include "core/editing/iterators/TextIterator.h" |
| 48 #include "core/editing/serializers/HTMLInterchange.h" |
| 49 #include "core/editing/serializers/Serialization.h" |
50 #include "core/events/BeforeTextInsertedEvent.h" | 50 #include "core/events/BeforeTextInsertedEvent.h" |
51 #include "core/frame/LocalFrame.h" | 51 #include "core/frame/LocalFrame.h" |
52 #include "core/frame/UseCounter.h" | 52 #include "core/frame/UseCounter.h" |
53 #include "core/html/HTMLBRElement.h" | 53 #include "core/html/HTMLBRElement.h" |
54 #include "core/html/HTMLElement.h" | 54 #include "core/html/HTMLElement.h" |
55 #include "core/html/HTMLInputElement.h" | 55 #include "core/html/HTMLInputElement.h" |
56 #include "core/html/HTMLLIElement.h" | 56 #include "core/html/HTMLLIElement.h" |
57 #include "core/html/HTMLQuoteElement.h" | 57 #include "core/html/HTMLQuoteElement.h" |
58 #include "core/html/HTMLSelectElement.h" | 58 #include "core/html/HTMLSelectElement.h" |
59 #include "core/html/HTMLSpanElement.h" | 59 #include "core/html/HTMLSpanElement.h" |
(...skipping 1482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1542 DEFINE_TRACE(ReplaceSelectionCommand) | 1542 DEFINE_TRACE(ReplaceSelectionCommand) |
1543 { | 1543 { |
1544 visitor->trace(m_startOfInsertedContent); | 1544 visitor->trace(m_startOfInsertedContent); |
1545 visitor->trace(m_endOfInsertedContent); | 1545 visitor->trace(m_endOfInsertedContent); |
1546 visitor->trace(m_insertionStyle); | 1546 visitor->trace(m_insertionStyle); |
1547 visitor->trace(m_documentFragment); | 1547 visitor->trace(m_documentFragment); |
1548 CompositeEditCommand::trace(visitor); | 1548 CompositeEditCommand::trace(visitor); |
1549 } | 1549 } |
1550 | 1550 |
1551 } // namespace blink | 1551 } // namespace blink |
OLD | NEW |