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

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

Issue 795053002: [binding] Migrate XSLTProcessor.idl away from using custom V8 binding. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Review comments Created 6 years 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/bindings/core/v8/custom/custom.gypi ('k') | no next file » | 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 f8d3b1d9f5027b759cd3734e5b7d08ab31f7fea6..df29bff1488cc87216fc107331a2bc4a55edfa62 100644
--- a/Source/core/xml/XSLTProcessor.idl
+++ b/Source/core/xml/XSLTProcessor.idl
@@ -42,9 +42,9 @@
[CustomElementCallbacks] DocumentFragment transformToFragment([Default=Undefined] optional Node source, [Default=Undefined] optional Document docVal);
[CustomElementCallbacks] Document transformToDocument([Default=Undefined] optional Node source);
- [Custom] void setParameter(DOMString namespaceURI, DOMString localName, DOMString value);
- [Custom, TreatReturnedNullStringAs=Undefined] DOMString getParameter(DOMString namespaceURI, DOMString localName);
- [Custom] void removeParameter(DOMString namespaceURI, DOMString localName);
+ void setParameter(DOMString? namespaceURI, DOMString localName, DOMString value);
+ [TreatReturnedNullStringAs=Undefined] DOMString getParameter(DOMString? namespaceURI, DOMString localName);
+ void removeParameter(DOMString? namespaceURI, DOMString localName);
void clearParameters();
void reset();
« no previous file with comments | « Source/bindings/core/v8/custom/custom.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698