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

Unified Diff: Source/modules/websockets/WebSocket.idl

Issue 1175183004: TreatReturnedNullStringAs=undefined removed from WebSocket.idl (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/websockets/WebSocket.idl
diff --git a/Source/modules/websockets/WebSocket.idl b/Source/modules/websockets/WebSocket.idl
index 4c7ee2d6d41c41a015aa91bae66e392488226638..47a8c2ed46a106866068d957bfd9b335e8f9e87f 100644
--- a/Source/modules/websockets/WebSocket.idl
+++ b/Source/modules/websockets/WebSocket.idl
@@ -58,10 +58,8 @@ enum BinaryType { "blob", "arraybuffer" };
attribute EventHandler onopen;
attribute EventHandler onerror;
attribute EventHandler onclose;
- // FIXME: Per spec and impl, should never return undefined. Verify and remove extended attribute.
- [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString extensions;
- // FIXME: Per spec and impl, should never return undefined. Verify and remove extended attribute.
- [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString protocol;
+ readonly attribute DOMString extensions;
+ readonly attribute DOMString protocol;
[RaisesException] void close([Clamp] optional unsigned short code, optional USVString reason);
// messaging
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698