| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 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 13 matching lines...) Expand all Loading... |
| 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #include "config.h" | 27 #include "config.h" |
| 28 #include "core/editing/Editor.h" | 28 #include "core/editing/Editor.h" |
| 29 | 29 |
| 30 #include "bindings/v8/ExceptionStatePlaceholder.h" | 30 #include "bindings/v8/ExceptionStatePlaceholder.h" |
| 31 #include "core/CSSPropertyNames.h" | 31 #include "core/CSSPropertyNames.h" |
| 32 #include "core/EventNames.h" | 32 #include "core/EventNames.h" |
| 33 #include "core/HTMLNames.h" | 33 #include "core/HTMLNames.h" |
| 34 #include "core/SVGNames.h" | |
| 35 #include "core/XLinkNames.h" | 34 #include "core/XLinkNames.h" |
| 36 #include "core/accessibility/AXObjectCache.h" | 35 #include "core/accessibility/AXObjectCache.h" |
| 37 #include "core/clipboard/Clipboard.h" | 36 #include "core/clipboard/Clipboard.h" |
| 38 #include "core/clipboard/DataObject.h" | 37 #include "core/clipboard/DataObject.h" |
| 39 #include "core/clipboard/Pasteboard.h" | 38 #include "core/clipboard/Pasteboard.h" |
| 40 #include "core/css/CSSComputedStyleDeclaration.h" | 39 #include "core/css/CSSComputedStyleDeclaration.h" |
| 41 #include "core/css/StylePropertySet.h" | 40 #include "core/css/StylePropertySet.h" |
| 42 #include "core/dom/DocumentFragment.h" | 41 #include "core/dom/DocumentFragment.h" |
| 43 #include "core/dom/DocumentMarkerController.h" | 42 #include "core/dom/DocumentMarkerController.h" |
| 44 #include "core/dom/NodeList.h" | 43 #include "core/dom/NodeList.h" |
| (...skipping 1258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1303 frame().selection().setShouldShowBlockCursor(m_overwriteModeEnabled); | 1302 frame().selection().setShouldShowBlockCursor(m_overwriteModeEnabled); |
| 1304 } | 1303 } |
| 1305 | 1304 |
| 1306 void Editor::trace(Visitor* visitor) | 1305 void Editor::trace(Visitor* visitor) |
| 1307 { | 1306 { |
| 1308 visitor->trace(m_lastEditCommand); | 1307 visitor->trace(m_lastEditCommand); |
| 1309 visitor->trace(m_mark); | 1308 visitor->trace(m_mark); |
| 1310 } | 1309 } |
| 1311 | 1310 |
| 1312 } // namespace WebCore | 1311 } // namespace WebCore |
| OLD | NEW |