| 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 16 matching lines...) Expand all Loading... |
| 27 #define WrapContentsInDummySpanCommand_h | 27 #define WrapContentsInDummySpanCommand_h |
| 28 | 28 |
| 29 #include "core/editing/commands/EditCommand.h" | 29 #include "core/editing/commands/EditCommand.h" |
| 30 | 30 |
| 31 namespace blink { | 31 namespace blink { |
| 32 | 32 |
| 33 class HTMLSpanElement; | 33 class HTMLSpanElement; |
| 34 | 34 |
| 35 class WrapContentsInDummySpanCommand final : public SimpleEditCommand { | 35 class WrapContentsInDummySpanCommand final : public SimpleEditCommand { |
| 36 public: | 36 public: |
| 37 static PassRefPtrWillBeRawPtr<WrapContentsInDummySpanCommand> create(PassRef
PtrWillBeRawPtr<Element> element) | 37 static RawPtr<WrapContentsInDummySpanCommand> create(RawPtr<Element> element
) |
| 38 { | 38 { |
| 39 return adoptRefWillBeNoop(new WrapContentsInDummySpanCommand(element)); | 39 return new WrapContentsInDummySpanCommand(element); |
| 40 } | 40 } |
| 41 | 41 |
| 42 DECLARE_VIRTUAL_TRACE(); | 42 DECLARE_VIRTUAL_TRACE(); |
| 43 | 43 |
| 44 private: | 44 private: |
| 45 explicit WrapContentsInDummySpanCommand(PassRefPtrWillBeRawPtr<Element>); | 45 explicit WrapContentsInDummySpanCommand(RawPtr<Element>); |
| 46 | 46 |
| 47 void doApply(EditingState*) override; | 47 void doApply(EditingState*) override; |
| 48 void doUnapply() override; | 48 void doUnapply() override; |
| 49 void doReapply() override; | 49 void doReapply() override; |
| 50 void executeApply(); | 50 void executeApply(); |
| 51 | 51 |
| 52 RefPtrWillBeMember<Element> m_element; | 52 Member<Element> m_element; |
| 53 RefPtrWillBeMember<HTMLSpanElement> m_dummySpan; | 53 Member<HTMLSpanElement> m_dummySpan; |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 } // namespace blink | 56 } // namespace blink |
| 57 | 57 |
| 58 #endif // WrapContentsInDummySpanCommand_h | 58 #endif // WrapContentsInDummySpanCommand_h |
| OLD | NEW |