| 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 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 bool m_hasSelectionToDelete; | 104 bool m_hasSelectionToDelete; |
| 105 bool m_smartDelete; | 105 bool m_smartDelete; |
| 106 bool m_mergeBlocksAfterDelete; | 106 bool m_mergeBlocksAfterDelete; |
| 107 bool m_needPlaceholder; | 107 bool m_needPlaceholder; |
| 108 bool m_expandForSpecialElements; | 108 bool m_expandForSpecialElements; |
| 109 bool m_pruneStartBlockIfNecessary; | 109 bool m_pruneStartBlockIfNecessary; |
| 110 bool m_startsAtEmptyLine; | 110 bool m_startsAtEmptyLine; |
| 111 bool m_sanitizeMarkup; | 111 bool m_sanitizeMarkup; |
| 112 InputEvent::InputType m_inputType; | 112 InputEvent::InputType m_inputType; |
| 113 | 113 |
| 114 // This data is transient and should be cleared at the end of the doApply func
tion. | 114 // This data is transient and should be cleared at the end of the doApply |
| 115 // function. |
| 115 VisibleSelection m_selectionToDelete; | 116 VisibleSelection m_selectionToDelete; |
| 116 Position m_upstreamStart; | 117 Position m_upstreamStart; |
| 117 Position m_downstreamStart; | 118 Position m_downstreamStart; |
| 118 Position m_upstreamEnd; | 119 Position m_upstreamEnd; |
| 119 Position m_downstreamEnd; | 120 Position m_downstreamEnd; |
| 120 Position m_endingPosition; | 121 Position m_endingPosition; |
| 121 Position m_leadingWhitespace; | 122 Position m_leadingWhitespace; |
| 122 Position m_trailingWhitespace; | 123 Position m_trailingWhitespace; |
| 123 Position m_referenceMovePosition; | 124 Position m_referenceMovePosition; |
| 124 Member<Node> m_startBlock; | 125 Member<Node> m_startBlock; |
| 125 Member<Node> m_endBlock; | 126 Member<Node> m_endBlock; |
| 126 Member<EditingStyle> m_typingStyle; | 127 Member<EditingStyle> m_typingStyle; |
| 127 Member<EditingStyle> m_deleteIntoBlockquoteStyle; | 128 Member<EditingStyle> m_deleteIntoBlockquoteStyle; |
| 128 Member<Element> m_startRoot; | 129 Member<Element> m_startRoot; |
| 129 Member<Element> m_endRoot; | 130 Member<Element> m_endRoot; |
| 130 Member<HTMLTableRowElement> m_startTableRow; | 131 Member<HTMLTableRowElement> m_startTableRow; |
| 131 Member<HTMLTableRowElement> m_endTableRow; | 132 Member<HTMLTableRowElement> m_endTableRow; |
| 132 Member<Node> m_temporaryPlaceholder; | 133 Member<Node> m_temporaryPlaceholder; |
| 133 }; | 134 }; |
| 134 | 135 |
| 135 } // namespace blink | 136 } // namespace blink |
| 136 | 137 |
| 137 #endif // DeleteSelectionCommand_h | 138 #endif // DeleteSelectionCommand_h |
| OLD | NEW |