HomeSort by relevance Sort by last modified time
    Searched refs:Undo (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/chrome/browser/undo/
undo_operation.h 8 // Base class for all undo operations.
13 virtual void Undo() = 0;
undo_manager.h 27 void Undo();
38 // undo and redo those operations.
44 // Perform an undo or redo operation.
45 void Undo();
57 // Suspend undo tracking while processing non-user initiated changes such as
63 // Returns all UndoOperations that are awaiting Undo or Redo. Note that
67 // Remove all undo and redo operations. Note that grouping of actions and
68 // suspension of undo tracking states are left unchanged.
72 void Undo(bool* performing_indicator,
76 // Handle the addition of |new_undo_group| to the active undo group container
    [all...]
undo_manager.cc 5 #include "chrome/browser/undo/undo_manager.h"
9 #include "chrome/browser/undo/undo_operation.h"
30 void UndoGroup::Undo() {
33 (*ri)->Undo();
53 void UndoManager::Undo() {
54 Undo(&performing_undo_, &undo_actions_);
58 Undo(&performing_redo_, &redo_actions_);
100 // Undo/Redo should have at least one operation performed.
140 void UndoManager::Undo(bool* performing_indicator,
154 action->Undo();
    [all...]
undo_manager_test.cc 6 #include "chrome/browser/undo/undo_manager.h"
7 #include "chrome/browser/undo/undo_operation.h"
41 virtual void Undo() OVERRIDE;
56 void TestUndoOperation::Undo() {
105 undo_service.undo_manager_.Undo();
109 undo_service.undo_manager_.Undo();
122 undo_service.undo_manager_.Undo();
147 undo_service.undo_manager_.Undo();
155 // Check that both operations were called in Undo and Redo.
179 undo_service.undo_manager_.Undo();
    [all...]