| Index: third_party/WebKit/Source/modules/speech/SpeechGrammarList.h
|
| diff --git a/third_party/WebKit/Source/modules/speech/SpeechGrammarList.h b/third_party/WebKit/Source/modules/speech/SpeechGrammarList.h
|
| index 91ece05fcef27b29aca07914c5affb2476dc52d5..99f049854e80d95379e8d69b7d26fb064c15cab9 100644
|
| --- a/third_party/WebKit/Source/modules/speech/SpeechGrammarList.h
|
| +++ b/third_party/WebKit/Source/modules/speech/SpeechGrammarList.h
|
| @@ -33,7 +33,7 @@
|
|
|
| namespace blink {
|
|
|
| -class ExecutionContext;
|
| +class ScriptState;
|
|
|
| class MODULES_EXPORT SpeechGrammarList final
|
| : public GarbageCollected<SpeechGrammarList>,
|
| @@ -46,7 +46,7 @@ class MODULES_EXPORT SpeechGrammarList final
|
| unsigned length() const { return m_grammars.size(); }
|
| SpeechGrammar* item(unsigned) const;
|
|
|
| - void addFromUri(ExecutionContext*, const String& src, double weight = 1.0);
|
| + void addFromUri(ScriptState*, const String& src, double weight = 1.0);
|
| void addFromString(const String&, double weight = 1.0);
|
|
|
| DECLARE_TRACE();
|
|
|