| Index: third_party/WebCore/editing/UndoManager.idl
|
| diff --git a/third_party/WebCore/editing/UndoManager.idl b/third_party/WebCore/editing/UndoManager.idl
|
| index 5ee7bea189e6e5d8f3d08cc6ff85a7d5e3a03226..b4d0f8133204fdd2141bc476ae24fb265f7c3d9d 100644
|
| --- a/third_party/WebCore/editing/UndoManager.idl
|
| +++ b/third_party/WebCore/editing/UndoManager.idl
|
| @@ -33,11 +33,20 @@ module core {
|
| interface [
|
| Conditional=UNDO_MANAGER
|
| ] UndoManager {
|
| - void undo();
|
| - void redo();
|
| + void transact(in Dictionary transaction, in boolean merge)
|
| + raises(DOMException);
|
|
|
| - void clearUndo();
|
| - void clearRedo();
|
| + void undo()
|
| + raises(DOMException);
|
| + void redo()
|
| + raises(DOMException);
|
| +
|
| + readonly attribute unsigned long length;
|
| +
|
| + void clearUndo()
|
| + raises(DOMException);
|
| + void clearRedo()
|
| + raises(DOMException);
|
| };
|
|
|
| }
|
|
|