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

Unified Diff: Source/core/css/MediaList.idl

Issue 950763002: Replace [TreatReturnedNullStringAs=Null] with nullable return type (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 | Source/core/dom/DOMSettableTokenList.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/MediaList.idl
diff --git a/Source/core/css/MediaList.idl b/Source/core/css/MediaList.idl
index cae0768d347630efe52b102cf74ad9d71a532c40..647d10141999f16506954019e482c052d748b96e 100644
--- a/Source/core/css/MediaList.idl
+++ b/Source/core/css/MediaList.idl
@@ -31,7 +31,7 @@
attribute DOMString? mediaText;
readonly attribute unsigned long length;
- [TreatReturnedNullStringAs=Null] getter DOMString item(unsigned long index);
+ getter DOMString? item(unsigned long index);
[RaisesException] void deleteMedium(DOMString oldMedium);
[RaisesException] void appendMedium(DOMString newMedium);
« no previous file with comments | « no previous file | Source/core/dom/DOMSettableTokenList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698