OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UndoOperation
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/chrome/browser/undo/
undo_operation.h
9
class
UndoOperation
{
11
virtual ~
UndoOperation
() {}
19
//
UndoOperation
representing a deletion would have been created in order to
21
//
UndoOperation
of delete would be "Redo add".
undo_manager.h
15
class
UndoOperation
;
26
void AddOperation(scoped_ptr<
UndoOperation
> operation);
27
const std::vector<
UndoOperation
*>& undo_operations() {
40
ScopedVector<
UndoOperation
> operations_;
68
void AddUndoOperation(scoped_ptr<
UndoOperation
> operation);
82
std::vector<
UndoOperation
*> GetAllUndoOperations() const;
undo_manager.cc
31
void UndoGroup::AddOperation(scoped_ptr<
UndoOperation
> operation) {
40
for (ScopedVector<
UndoOperation
>::reverse_iterator ri = operations_.rbegin();
83
void UndoManager::AddUndoOperation(scoped_ptr<
UndoOperation
> operation) {
140
std::vector<
UndoOperation
*> UndoManager::GetAllUndoOperations() const {
141
std::vector<
UndoOperation
*> result;
143
const std::vector<
UndoOperation
*>& operations =
148
const std::vector<
UndoOperation
*>& operations =
157
const std::vector<
UndoOperation
*>& operations =
bookmark_undo_service.cc
26
class BookmarkUndoOperation : public
UndoOperation
,
60
//
UndoOperation
:
119
//
UndoOperation
:
196
//
UndoOperation
:
256
//
UndoOperation
:
331
//
UndoOperation
:
416
scoped_ptr<
UndoOperation
> op(new BookmarkMoveOperation(profile_,
427
scoped_ptr<
UndoOperation
> op(new BookmarkAddOperation(profile_,
437
scoped_ptr<
UndoOperation
> op(new BookmarkRemoveOperation(profile_,
449
scoped_ptr<
UndoOperation
> op(new BookmarkRemoveOperation(profile_
[
all
...]
undo_manager_test.cc
36
class TestUndoOperation : public
UndoOperation
{
41
//
UndoOperation
:
89
undo_manager_.AddUndoOperation(op.PassAs<
UndoOperation
>());
231
std::vector<
UndoOperation
*> all_operations =
Completed in 592 milliseconds