| 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 EditCommand_h | 27 #define EditCommand_h |
| 28 | 28 |
| 29 #include "core/editing/EditAction.h" | 29 #include "core/editing/EditAction.h" |
| 30 #include "core/editing/VisibleSelection.h" | 30 #include "core/editing/VisibleSelection.h" |
| 31 #include "platform/heap/Handle.h" | 31 #include "platform/heap/Handle.h" |
| 32 | 32 |
| 33 namespace blink { | 33 namespace blink { |
| 34 | 34 |
| 35 class CompositeEditCommand; | 35 class CompositeEditCommand; |
| 36 class Document; | 36 class Document; |
| 37 class Element; | |
| 38 | 37 |
| 39 class EditCommand : public RefCountedWillBeGarbageCollectedFinalized<EditCommand
> { | 38 class EditCommand : public RefCountedWillBeGarbageCollectedFinalized<EditCommand
> { |
| 40 public: | 39 public: |
| 41 virtual ~EditCommand(); | 40 virtual ~EditCommand(); |
| 42 | 41 |
| 43 void setParent(CompositeEditCommand*); | 42 void setParent(CompositeEditCommand*); |
| 44 | 43 |
| 45 virtual EditAction editingAction() const; | 44 virtual EditAction editingAction() const; |
| 46 | 45 |
| 47 const VisibleSelection& startingSelection() const { return m_startingSelecti
on; } | 46 const VisibleSelection& startingSelection() const { return m_startingSelecti
on; } |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 | 87 |
| 89 private: | 88 private: |
| 90 virtual bool isSimpleEditCommand() const OVERRIDE FINAL { return true; } | 89 virtual bool isSimpleEditCommand() const OVERRIDE FINAL { return true; } |
| 91 }; | 90 }; |
| 92 | 91 |
| 93 DEFINE_TYPE_CASTS(SimpleEditCommand, EditCommand, command, command->isSimpleEdit
Command(), command.isSimpleEditCommand()); | 92 DEFINE_TYPE_CASTS(SimpleEditCommand, EditCommand, command, command->isSimpleEdit
Command(), command.isSimpleEditCommand()); |
| 94 | 93 |
| 95 } // namespace blink | 94 } // namespace blink |
| 96 | 95 |
| 97 #endif // EditCommand_h | 96 #endif // EditCommand_h |
| OLD | NEW |