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

Unified Diff: third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.idl

Issue 2342393002: Enable TypeError for dictionary members of non-nullable interface type (Closed)
Patch Set: Created 4 years, 3 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: third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.idl
diff --git a/third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.idl b/third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.idl
index 289b1034ef990b44a95fa2142bed5fba6f2ad381..9403889559142640852e26fa187efed6f59f001a 100644
--- a/third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.idl
+++ b/third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.idl
@@ -28,8 +28,8 @@
Constructor(DOMString type, optional SpeechRecognitionEventInit initDict),
] interface SpeechRecognitionEvent : Event {
readonly attribute unsigned long resultIndex;
- readonly attribute SpeechRecognitionResultList results;
+ readonly attribute SpeechRecognitionResultList? results;
- readonly attribute Document interpretation;
- readonly attribute Document emma;
+ readonly attribute Document? interpretation;
+ readonly attribute Document? emma;
};

Powered by Google App Engine
This is Rietveld 408576698