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

Unified Diff: Source/modules/mediastream/RTCSessionDescription.idl

Issue 361883004: Replace many [TreatReturnedNullStringAs=Null] with nullable DOMString (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
Index: Source/modules/mediastream/RTCSessionDescription.idl
diff --git a/Source/modules/mediastream/RTCSessionDescription.idl b/Source/modules/mediastream/RTCSessionDescription.idl
index 5ffa31058fe0580da19eddadc3f9b9013375529c..a083ff34a3c5f645aa692b0abca6f30019d5f7b3 100644
--- a/Source/modules/mediastream/RTCSessionDescription.idl
+++ b/Source/modules/mediastream/RTCSessionDescription.idl
@@ -33,7 +33,7 @@
Constructor(optional Dictionary descriptionInitDict),
RaisesException=Constructor
] interface RTCSessionDescription {
- [RaisesException=Setter, TreatReturnedNullStringAs=Null, TreatNullAs=NullString] attribute DOMString type;
- [TreatReturnedNullStringAs=Null, TreatNullAs=NullString] attribute DOMString sdp;
+ [RaisesException=Setter] attribute DOMString? type;
+ attribute DOMString? sdp;
};

Powered by Google App Engine
This is Rietveld 408576698