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

Unified Diff: Source/core/page/Selection.idl

Issue 356843007: Remove meaningless uses of [TypeChecking=Nullable] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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 | « Source/core/html/canvas/WebGLRenderingContextBase.idl ('k') | Source/core/svg/SVGAngle.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/Selection.idl
diff --git a/Source/core/page/Selection.idl b/Source/core/page/Selection.idl
index db35b80a086e7236d47655178b9b19d4f5b01da5..b28b53ecb00f5b33453896f942f42c750bfb24fe 100644
--- a/Source/core/page/Selection.idl
+++ b/Source/core/page/Selection.idl
@@ -41,8 +41,8 @@
readonly attribute boolean isCollapsed;
readonly attribute long rangeCount;
- [RaisesException, TypeChecking=Interface|Nullable] void collapse(Node node,
- optional long offset);
+ [RaisesException, TypeChecking=Interface] void collapse(Node node,
+ optional long offset);
[RaisesException] void collapseToEnd();
[RaisesException] void collapseToStart();
@@ -77,8 +77,8 @@
[Default=Undefined] optional long baseOffset,
[Default=Undefined] optional Node extentNode,
[Default=Undefined] optional long extentOffset);
- [ImplementedAs=collapse, MeasureAs=SelectionSetPosition, RaisesException, TypeChecking=Interface|Nullable] void setPosition(Node node,
- optional long offset);
+ [ImplementedAs=collapse, MeasureAs=SelectionSetPosition, RaisesException, TypeChecking=Interface] void setPosition(Node node,
+ optional long offset);
// IE extentions
// http://msdn.microsoft.com/en-us/library/ms535869(VS.85).aspx
« no previous file with comments | « Source/core/html/canvas/WebGLRenderingContextBase.idl ('k') | Source/core/svg/SVGAngle.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698