| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "platform/heap/Handle.h" | 34 #include "platform/heap/Handle.h" |
| 35 #include "wtf/Deque.h" | 35 #include "wtf/Deque.h" |
| 36 #include "wtf/Forward.h" | 36 #include "wtf/Forward.h" |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 class LocalFrame; | 40 class LocalFrame; |
| 41 class UndoStep; | 41 class UndoStep; |
| 42 | 42 |
| 43 class UndoStack final : public NoBaseWillBeGarbageCollected<UndoStack> { | 43 class UndoStack final : public NoBaseWillBeGarbageCollected<UndoStack> { |
| 44 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(UndoStack); |
| 45 WTF_MAKE_NONCOPYABLE(UndoStack); |
| 44 DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(UndoStack) | 46 DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(UndoStack) |
| 45 public: | 47 public: |
| 46 static PassOwnPtrWillBeRawPtr<UndoStack> create(); | 48 static PassOwnPtrWillBeRawPtr<UndoStack> create(); |
| 47 | 49 |
| 48 void registerUndoStep(PassRefPtrWillBeRawPtr<UndoStep>); | 50 void registerUndoStep(PassRefPtrWillBeRawPtr<UndoStep>); |
| 49 void registerRedoStep(PassRefPtrWillBeRawPtr<UndoStep>); | 51 void registerRedoStep(PassRefPtrWillBeRawPtr<UndoStep>); |
| 50 void didUnloadFrame(const LocalFrame&); | 52 void didUnloadFrame(const LocalFrame&); |
| 51 bool canUndo() const; | 53 bool canUndo() const; |
| 52 bool canRedo() const; | 54 bool canRedo() const; |
| 53 void undo(); | 55 void undo(); |
| 54 void redo(); | 56 void redo(); |
| 55 | 57 |
| 56 DECLARE_TRACE(); | 58 DECLARE_TRACE(); |
| 57 | 59 |
| 58 private: | 60 private: |
| 59 UndoStack(); | 61 UndoStack(); |
| 60 | 62 |
| 61 typedef WillBeHeapDeque<RefPtrWillBeMember<UndoStep>> UndoStepStack; | 63 typedef WillBeHeapDeque<RefPtrWillBeMember<UndoStep>> UndoStepStack; |
| 62 | 64 |
| 63 void filterOutUndoSteps(UndoStepStack&, const LocalFrame&); | 65 void filterOutUndoSteps(UndoStepStack&, const LocalFrame&); |
| 64 | 66 |
| 65 bool m_inRedo; | 67 bool m_inRedo; |
| 66 UndoStepStack m_undoStack; | 68 UndoStepStack m_undoStack; |
| 67 UndoStepStack m_redoStack; | 69 UndoStepStack m_redoStack; |
| 68 }; | 70 }; |
| 69 | 71 |
| 70 } // namespace blink | 72 } // namespace blink |
| 71 | 73 |
| 72 #endif | 74 #endif |
| OLD | NEW |