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

Unified Diff: Source/core/xml/XPathExpression.idl

Issue 337343002: IDL: make optional arguments (without default) explicit sometimes Base URL: https://chromium.googlesource.com/chromium/blink.git@idl-default-arguments-next
Patch Set: Created 6 years, 4 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/xml/XPathEvaluator.idl ('k') | Source/core/xml/XPathNSResolver.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XPathExpression.idl
diff --git a/Source/core/xml/XPathExpression.idl b/Source/core/xml/XPathExpression.idl
index 35ab9089439e80a55903c2acd40de36e6b5438a3..32cffcdae9ac9f5bb1dfd4e04dd2b0c8327c59d3 100644
--- a/Source/core/xml/XPathExpression.idl
+++ b/Source/core/xml/XPathExpression.idl
@@ -21,8 +21,8 @@
[
WillBeGarbageCollected
] interface XPathExpression {
- [RaisesException] XPathResult evaluate([Default=Undefined] optional Node contextNode,
- [Default=Undefined] optional unsigned short type,
- [Default=Undefined] optional XPathResult inResult);
+ [RaisesException] XPathResult evaluate(optional Node contextNode,
+ optional unsigned short type,
+ optional XPathResult inResult);
};
« no previous file with comments | « Source/core/xml/XPathEvaluator.idl ('k') | Source/core/xml/XPathNSResolver.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698