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

Unified Diff: Source/core/dom/Node.idl

Issue 367663002: Make [TreatNullAs=NullString] DOMString arguments nullable instead (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/dom/NamedNodeMap.idl ('k') | Source/core/dom/shadow/ShadowRoot.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Node.idl
diff --git a/Source/core/dom/Node.idl b/Source/core/dom/Node.idl
index c9274073a90e36f72e6620c0b57ab8e89908cac3..3a78085279b65c0b373651501489a0ac9de84b68 100644
--- a/Source/core/dom/Node.idl
+++ b/Source/core/dom/Node.idl
@@ -69,9 +69,9 @@
[MeasureAs=NodeIsSameNode] boolean isSameNode([Default=Undefined] optional Node other); // Removed in DOM4.
boolean isEqualNode(Node other);
- DOMString? lookupPrefix([TreatNullAs=NullString] DOMString namespaceURI);
- boolean isDefaultNamespace([TreatNullAs=NullString] DOMString namespaceURI);
- DOMString? lookupNamespaceURI([TreatNullAs=NullString] DOMString prefix);
+ DOMString? lookupPrefix(DOMString? namespaceURI);
+ boolean isDefaultNamespace(DOMString? namespaceURI);
+ DOMString? lookupNamespaceURI(DOMString? prefix);
// DocumentPosition
const unsigned short DOCUMENT_POSITION_DISCONNECTED = 0x01;
« no previous file with comments | « Source/core/dom/NamedNodeMap.idl ('k') | Source/core/dom/shadow/ShadowRoot.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698