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

Unified Diff: third_party/WebKit/Source/modules/speech/SpeechGrammarList.h

Issue 2610903002: Replace [CallWith=ExecutionContext] with [CallWith=ScriptState] (Closed)
Patch Set: Created 3 years, 11 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/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();

Powered by Google App Engine
This is Rietveld 408576698