| Index: Source/bindings/v8/Dictionary.cpp
|
| diff --git a/Source/bindings/v8/Dictionary.cpp b/Source/bindings/v8/Dictionary.cpp
|
| index b742140269634cda5059470d069ac5cb05131d76..e171893cbf656b041f98bf972e492da106e1b2ad 100644
|
| --- a/Source/bindings/v8/Dictionary.cpp
|
| +++ b/Source/bindings/v8/Dictionary.cpp
|
| @@ -479,7 +479,7 @@ bool Dictionary::get(const String& key, RefPtrWillBeMember<TrackBase>& value) co
|
| return true;
|
| }
|
|
|
| -bool Dictionary::get(const String& key, RefPtrWillBeMember<SpeechRecognitionError>& value) const
|
| +bool Dictionary::get(const String& key, Member<SpeechRecognitionError>& value) const
|
| {
|
| v8::Local<v8::Value> v8Value;
|
| if (!getKey(key, v8Value))
|
| @@ -489,7 +489,7 @@ bool Dictionary::get(const String& key, RefPtrWillBeMember<SpeechRecognitionErro
|
| return true;
|
| }
|
|
|
| -bool Dictionary::get(const String& key, RefPtrWillBeMember<SpeechRecognitionResult>& value) const
|
| +bool Dictionary::get(const String& key, Member<SpeechRecognitionResult>& value) const
|
| {
|
| v8::Local<v8::Value> v8Value;
|
| if (!getKey(key, v8Value))
|
| @@ -499,7 +499,7 @@ bool Dictionary::get(const String& key, RefPtrWillBeMember<SpeechRecognitionResu
|
| return true;
|
| }
|
|
|
| -bool Dictionary::get(const String& key, RefPtrWillBeMember<SpeechRecognitionResultList>& value) const
|
| +bool Dictionary::get(const String& key, Member<SpeechRecognitionResultList>& value) const
|
| {
|
| v8::Local<v8::Value> v8Value;
|
| if (!getKey(key, v8Value))
|
|
|