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

Unified Diff: Source/modules/speech/SpeechGrammarList.idl

Issue 14751005: Support for latest WebIDL for indexed property getters. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: do not generate enumerator in case of WebKitCSSKeyframesRule Created 7 years, 8 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/speech/SpeechGrammarList.idl
diff --git a/Source/modules/speech/SpeechGrammarList.idl b/Source/modules/speech/SpeechGrammarList.idl
index 18ae829c8214e04ac17191ca4cc793cc8d5e0c64..2c6db682896b5f38d700b277475d40f9eae8e76a 100644
--- a/Source/modules/speech/SpeechGrammarList.idl
+++ b/Source/modules/speech/SpeechGrammarList.idl
@@ -24,12 +24,11 @@
*/
[
- IndexedGetter,
Constructor,
ImplementationLacksVTable
] interface SpeechGrammarList {
readonly attribute unsigned long length;
- SpeechGrammar item([IsIndex] unsigned long index);
+ getter SpeechGrammar item([IsIndex] unsigned long index);
[CallWith=ScriptExecutionContext] void addFromUri(DOMString src, optional float weight);
void addFromString(DOMString string, optional float weight);
};

Powered by Google App Engine
This is Rietveld 408576698