| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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" |
| 60 #include "core/layout/LayoutObject.h" | 60 #include "core/layout/LayoutObject.h" |
| 61 #include "core/rendering/RenderText.h" | 61 #include "core/layout/LayoutText.h" |
| 62 #include "wtf/StdLibExtras.h" | 62 #include "wtf/StdLibExtras.h" |
| 63 #include "wtf/Vector.h" | 63 #include "wtf/Vector.h" |
| 64 | 64 |
| 65 namespace blink { | 65 namespace blink { |
| 66 | 66 |
| 67 using namespace HTMLNames; | 67 using namespace HTMLNames; |
| 68 | 68 |
| 69 enum EFragmentType { EmptyFragment, SingleTextNodeFragment, TreeFragment }; | 69 enum EFragmentType { EmptyFragment, SingleTextNodeFragment, TreeFragment }; |
| 70 | 70 |
| 71 // --- ReplacementFragment helper class | 71 // --- ReplacementFragment helper class |
| (...skipping 1470 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 |