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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 Position m_upstreamStart; | 88 Position m_upstreamStart; |
89 Position m_downstreamStart; | 89 Position m_downstreamStart; |
90 Position m_upstreamEnd; | 90 Position m_upstreamEnd; |
91 Position m_downstreamEnd; | 91 Position m_downstreamEnd; |
92 Position m_endingPosition; | 92 Position m_endingPosition; |
93 Position m_leadingWhitespace; | 93 Position m_leadingWhitespace; |
94 Position m_trailingWhitespace; | 94 Position m_trailingWhitespace; |
95 RefPtr<Node> m_startBlock; | 95 RefPtr<Node> m_startBlock; |
96 RefPtr<Node> m_endBlock; | 96 RefPtr<Node> m_endBlock; |
97 RefPtr<EditingStyle> m_typingStyle; | 97 RefPtr<EditingStyle> m_typingStyle; |
98 RefPtr<EditingStyle> m_deleteIntoBlockquoteStyle; | |
99 RefPtr<Node> m_startRoot; | 98 RefPtr<Node> m_startRoot; |
100 RefPtr<Node> m_endRoot; | 99 RefPtr<Node> m_endRoot; |
101 RefPtr<Node> m_startTableRow; | 100 RefPtr<Node> m_startTableRow; |
102 RefPtr<Node> m_endTableRow; | 101 RefPtr<Node> m_endTableRow; |
103 RefPtr<Node> m_temporaryPlaceholder; | 102 RefPtr<Node> m_temporaryPlaceholder; |
104 }; | 103 }; |
105 | 104 |
106 } // namespace WebCore | 105 } // namespace WebCore |
107 | 106 |
108 #endif // DeleteSelectionCommand_h | 107 #endif // DeleteSelectionCommand_h |
OLD | NEW |