Index: third_party/WebKit/Source/core/editing/Selection.idl |
diff --git a/third_party/WebKit/Source/core/editing/Selection.idl b/third_party/WebKit/Source/core/editing/Selection.idl |
index 7466f32cdc6097f12862a8a37aec5d8706474652..15b420034133ceb4d381674e25bb660b4fa9c972 100644 |
--- a/third_party/WebKit/Source/core/editing/Selection.idl |
+++ b/third_party/WebKit/Source/core/editing/Selection.idl |
@@ -53,12 +53,9 @@ |
[MeasureAs=SelectionCollapseToEnd, RaisesException] void collapseToEnd(); |
[MeasureAs=SelectionExtend, RaisesException] void extend(Node node, optional long offset = 0); |
// TODO(philipj): The arguments should be anchorNode, anchorOffset, |
- // focusNode and focusOffset, and none of them are optional or nullable in |
- // the spec. |
- [MeasureAs=SelectionSetBaseAndExtent, RaisesException] void setBaseAndExtent([Default=Undefined] optional Node? baseNode, |
- [Default=Undefined] optional long baseOffset, |
- [Default=Undefined] optional Node? extentNode, |
- [Default=Undefined] optional long extentOffset); |
+ // focusNode and focusOffset, and none of them are nullable in the spec. |
+ [MeasureAs=SelectionSetBaseAndExtent, RaisesException] void setBaseAndExtent(Node? baseNode, long baseOffset, |
+ Node? extentNode, long extentOffset); |
[MeasureAs=SelectionSelectAllChildren, RaisesException] void selectAllChildren(Node node); |
[MeasureAs=SelectionDeleteDromDocument, CustomElementCallbacks] void deleteFromDocument(); |
[MeasureAs=SelectionContainsNode] boolean containsNode(Node node, optional boolean allowPartialContainment = false); |