| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "core/dom/ParserContentPolicy.h" | 42 #include "core/dom/ParserContentPolicy.h" |
| 43 #include "core/dom/Text.h" | 43 #include "core/dom/Text.h" |
| 44 #include "core/editing/EditingUtilities.h" | 44 #include "core/editing/EditingUtilities.h" |
| 45 #include "core/editing/InputMethodController.h" | 45 #include "core/editing/InputMethodController.h" |
| 46 #include "core/editing/RenderedPosition.h" | 46 #include "core/editing/RenderedPosition.h" |
| 47 #include "core/editing/VisibleUnits.h" | 47 #include "core/editing/VisibleUnits.h" |
| 48 #include "core/editing/commands/ApplyStyleCommand.h" | 48 #include "core/editing/commands/ApplyStyleCommand.h" |
| 49 #include "core/editing/commands/DeleteSelectionCommand.h" | 49 #include "core/editing/commands/DeleteSelectionCommand.h" |
| 50 #include "core/editing/commands/IndentOutdentCommand.h" | 50 #include "core/editing/commands/IndentOutdentCommand.h" |
| 51 #include "core/editing/commands/InsertListCommand.h" | 51 #include "core/editing/commands/InsertListCommand.h" |
| 52 #include "core/editing/commands/MoveSelectionCommand.h" | |
| 53 #include "core/editing/commands/RemoveFormatCommand.h" | 52 #include "core/editing/commands/RemoveFormatCommand.h" |
| 54 #include "core/editing/commands/ReplaceSelectionCommand.h" | 53 #include "core/editing/commands/ReplaceSelectionCommand.h" |
| 55 #include "core/editing/commands/SimplifyMarkupCommand.h" | 54 #include "core/editing/commands/SimplifyMarkupCommand.h" |
| 56 #include "core/editing/commands/TypingCommand.h" | 55 #include "core/editing/commands/TypingCommand.h" |
| 57 #include "core/editing/commands/UndoStack.h" | 56 #include "core/editing/commands/UndoStack.h" |
| 58 #include "core/editing/iterators/SearchBuffer.h" | 57 #include "core/editing/iterators/SearchBuffer.h" |
| 59 #include "core/editing/markers/DocumentMarkerController.h" | 58 #include "core/editing/markers/DocumentMarkerController.h" |
| 60 #include "core/editing/serializers/Serialization.h" | 59 #include "core/editing/serializers/Serialization.h" |
| 61 #include "core/editing/spellcheck/SpellChecker.h" | 60 #include "core/editing/spellcheck/SpellChecker.h" |
| 62 #include "core/events/ClipboardEvent.h" | 61 #include "core/events/ClipboardEvent.h" |
| (...skipping 1561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1624 } | 1623 } |
| 1625 | 1624 |
| 1626 DEFINE_TRACE(Editor) { | 1625 DEFINE_TRACE(Editor) { |
| 1627 visitor->trace(m_frame); | 1626 visitor->trace(m_frame); |
| 1628 visitor->trace(m_lastEditCommand); | 1627 visitor->trace(m_lastEditCommand); |
| 1629 visitor->trace(m_undoStack); | 1628 visitor->trace(m_undoStack); |
| 1630 visitor->trace(m_mark); | 1629 visitor->trace(m_mark); |
| 1631 } | 1630 } |
| 1632 | 1631 |
| 1633 } // namespace blink | 1632 } // namespace blink |
| OLD | NEW |