Chromium Code Reviews

Unified Diff: Source/modules/donottrack/NavigatorDoNotTrack.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.
Jump to:
View side-by-side diff with in-line comments
Index: Source/modules/donottrack/NavigatorDoNotTrack.idl
diff --git a/Source/modules/donottrack/NavigatorDoNotTrack.idl b/Source/modules/donottrack/NavigatorDoNotTrack.idl
index 1ecea7fecd8c547ebdcf5c1145418f60ea8ad4f1..1f1b615178660f70bc8a81859a24e8d6ffbc5314 100644
--- a/Source/modules/donottrack/NavigatorDoNotTrack.idl
+++ b/Source/modules/donottrack/NavigatorDoNotTrack.idl
@@ -29,5 +29,5 @@
*/
partial interface Navigator {
- [TreatReturnedNullStringAs=Null] readonly attribute DOMString doNotTrack;
+ readonly attribute DOMString? doNotTrack;
};

Powered by Google App Engine