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 13 matching lines...) Expand all Loading... |
24 */ | 24 */ |
25 | 25 |
26 #ifndef CompositeEditCommand_h | 26 #ifndef CompositeEditCommand_h |
27 #define CompositeEditCommand_h | 27 #define CompositeEditCommand_h |
28 | 28 |
29 #include "core/CSSPropertyNames.h" | 29 #include "core/CSSPropertyNames.h" |
30 #include "core/CoreExport.h" | 30 #include "core/CoreExport.h" |
31 #include "core/editing/commands/EditCommand.h" | 31 #include "core/editing/commands/EditCommand.h" |
32 #include "core/editing/commands/EditingState.h" | 32 #include "core/editing/commands/EditingState.h" |
33 #include "core/editing/commands/UndoStep.h" | 33 #include "core/editing/commands/UndoStep.h" |
34 #include "wtf/Vector.h" | 34 #include "platform/wtf/Vector.h" |
35 | 35 |
36 namespace blink { | 36 namespace blink { |
37 | 37 |
38 class EditingStyle; | 38 class EditingStyle; |
39 class Element; | 39 class Element; |
40 class HTMLBRElement; | 40 class HTMLBRElement; |
41 class HTMLElement; | 41 class HTMLElement; |
42 class HTMLSpanElement; | 42 class HTMLSpanElement; |
43 class Text; | 43 class Text; |
44 | 44 |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 | 233 |
234 DEFINE_TYPE_CASTS(CompositeEditCommand, | 234 DEFINE_TYPE_CASTS(CompositeEditCommand, |
235 EditCommand, | 235 EditCommand, |
236 command, | 236 command, |
237 command->IsCompositeEditCommand(), | 237 command->IsCompositeEditCommand(), |
238 command.IsCompositeEditCommand()); | 238 command.IsCompositeEditCommand()); |
239 | 239 |
240 } // namespace blink | 240 } // namespace blink |
241 | 241 |
242 #endif // CompositeEditCommand_h | 242 #endif // CompositeEditCommand_h |
OLD | NEW |