Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(299)

Unified Diff: third_party/WebCore/editing/UndoManager.idl

Issue 10837033: Roll IDL to multivm@733 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebCore/dom/WebKitNamedFlow.idl ('k') | third_party/WebCore/html/HTMLDetailsElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
}
« no previous file with comments | « third_party/WebCore/dom/WebKitNamedFlow.idl ('k') | third_party/WebCore/html/HTMLDetailsElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698