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

Unified Diff: Source/core/xml/XSLTProcessor.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/XPathResult.idl ('k') | Source/modules/beacon/NavigatorBeacon.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XSLTProcessor.idl
diff --git a/Source/core/xml/XSLTProcessor.idl b/Source/core/xml/XSLTProcessor.idl
index dc51a606a389dba8be5f188ac3a90913ba45eea7..c9605a176168adf3a7dcdaed04aa4f41933d2a08 100644
--- a/Source/core/xml/XSLTProcessor.idl
+++ b/Source/core/xml/XSLTProcessor.idl
@@ -37,9 +37,9 @@
MeasureAs=XSLTProcessor
] interface XSLTProcessor {
- void importStylesheet([Default=Undefined] optional Node stylesheet);
- [CustomElementCallbacks] DocumentFragment transformToFragment([Default=Undefined] optional Node source, [Default=Undefined] optional Document docVal);
- [CustomElementCallbacks] Document transformToDocument([Default=Undefined] optional Node source);
+ void importStylesheet(optional Node stylesheet);
+ [CustomElementCallbacks] DocumentFragment transformToFragment(optional Node source, optional Document docVal);
+ [CustomElementCallbacks] Document transformToDocument(optional Node source);
[Custom] void setParameter(DOMString namespaceURI, DOMString localName, DOMString value);
[Custom, TreatReturnedNullStringAs=Undefined] DOMString getParameter(DOMString namespaceURI, DOMString localName);
« no previous file with comments | « Source/core/xml/XPathResult.idl ('k') | Source/modules/beacon/NavigatorBeacon.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698