| 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 23 matching lines...) Expand all Loading... |
| 34 #include "core/SVGNames.h" | 34 #include "core/SVGNames.h" |
| 35 #include "core/XLinkNames.h" | 35 #include "core/XLinkNames.h" |
| 36 #include "core/accessibility/AXObjectCache.h" | 36 #include "core/accessibility/AXObjectCache.h" |
| 37 #include "core/clipboard/Clipboard.h" | 37 #include "core/clipboard/Clipboard.h" |
| 38 #include "core/clipboard/DataObject.h" | 38 #include "core/clipboard/DataObject.h" |
| 39 #include "core/clipboard/Pasteboard.h" | 39 #include "core/clipboard/Pasteboard.h" |
| 40 #include "core/css/CSSComputedStyleDeclaration.h" | 40 #include "core/css/CSSComputedStyleDeclaration.h" |
| 41 #include "core/css/StylePropertySet.h" | 41 #include "core/css/StylePropertySet.h" |
| 42 #include "core/dom/DocumentFragment.h" | 42 #include "core/dom/DocumentFragment.h" |
| 43 #include "core/dom/DocumentMarkerController.h" | 43 #include "core/dom/DocumentMarkerController.h" |
| 44 #include "core/dom/NodeList.h" | |
| 45 #include "core/dom/NodeTraversal.h" | 44 #include "core/dom/NodeTraversal.h" |
| 46 #include "core/dom/ParserContentPolicy.h" | 45 #include "core/dom/ParserContentPolicy.h" |
| 47 #include "core/dom/Text.h" | 46 #include "core/dom/Text.h" |
| 48 #include "core/editing/ApplyStyleCommand.h" | 47 #include "core/editing/ApplyStyleCommand.h" |
| 49 #include "core/editing/DeleteSelectionCommand.h" | 48 #include "core/editing/DeleteSelectionCommand.h" |
| 50 #include "core/editing/IndentOutdentCommand.h" | 49 #include "core/editing/IndentOutdentCommand.h" |
| 51 #include "core/editing/InputMethodController.h" | 50 #include "core/editing/InputMethodController.h" |
| 52 #include "core/editing/InsertListCommand.h" | 51 #include "core/editing/InsertListCommand.h" |
| 53 #include "core/editing/RemoveFormatCommand.h" | 52 #include "core/editing/RemoveFormatCommand.h" |
| 54 #include "core/editing/RenderedPosition.h" | 53 #include "core/editing/RenderedPosition.h" |
| (...skipping 1249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1304 frame().selection().setShouldShowBlockCursor(m_overwriteModeEnabled); | 1303 frame().selection().setShouldShowBlockCursor(m_overwriteModeEnabled); |
| 1305 } | 1304 } |
| 1306 | 1305 |
| 1307 void Editor::trace(Visitor* visitor) | 1306 void Editor::trace(Visitor* visitor) |
| 1308 { | 1307 { |
| 1309 visitor->trace(m_lastEditCommand); | 1308 visitor->trace(m_lastEditCommand); |
| 1310 visitor->trace(m_mark); | 1309 visitor->trace(m_mark); |
| 1311 } | 1310 } |
| 1312 | 1311 |
| 1313 } // namespace WebCore | 1312 } // namespace WebCore |
| OLD | NEW |