| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/layout/LayoutText.h" | 61 #include "core/layout/LayoutText.h" |
| 62 #include "platform/TraceEvent.h" | 62 #include "platform/tracing/TraceEvent.h" |
| 63 #include "wtf/StdLibExtras.h" | 63 #include "wtf/StdLibExtras.h" |
| 64 #include "wtf/Vector.h" | 64 #include "wtf/Vector.h" |
| 65 | 65 |
| 66 namespace blink { | 66 namespace blink { |
| 67 | 67 |
| 68 using namespace HTMLNames; | 68 using namespace HTMLNames; |
| 69 | 69 |
| 70 enum EFragmentType { EmptyFragment, SingleTextNodeFragment, TreeFragment }; | 70 enum EFragmentType { EmptyFragment, SingleTextNodeFragment, TreeFragment }; |
| 71 | 71 |
| 72 // --- ReplacementFragment helper class | 72 // --- ReplacementFragment helper class |
| (...skipping 1685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1758 visitor->trace(m_startOfInsertedContent); | 1758 visitor->trace(m_startOfInsertedContent); |
| 1759 visitor->trace(m_endOfInsertedContent); | 1759 visitor->trace(m_endOfInsertedContent); |
| 1760 visitor->trace(m_insertionStyle); | 1760 visitor->trace(m_insertionStyle); |
| 1761 visitor->trace(m_documentFragment); | 1761 visitor->trace(m_documentFragment); |
| 1762 visitor->trace(m_startOfInsertedRange); | 1762 visitor->trace(m_startOfInsertedRange); |
| 1763 visitor->trace(m_endOfInsertedRange); | 1763 visitor->trace(m_endOfInsertedRange); |
| 1764 CompositeEditCommand::trace(visitor); | 1764 CompositeEditCommand::trace(visitor); |
| 1765 } | 1765 } |
| 1766 | 1766 |
| 1767 } // namespace blink | 1767 } // namespace blink |
| OLD | NEW |