| Index: Source/bindings/v8/Dictionary.cpp
|
| diff --git a/Source/bindings/v8/Dictionary.cpp b/Source/bindings/v8/Dictionary.cpp
|
| index b81efc02b5d4677754fc7550424704f9aad57d09..95b98fc39bd548cf624f7a31babfa682feffeeb1 100644
|
| --- a/Source/bindings/v8/Dictionary.cpp
|
| +++ b/Source/bindings/v8/Dictionary.cpp
|
| @@ -501,7 +501,7 @@ bool Dictionary::get(const String& key, RefPtr<SpeechRecognitionError>& value) c
|
| return true;
|
| }
|
|
|
| -bool Dictionary::get(const String& key, RefPtr<SpeechRecognitionResult>& value) const
|
| +bool Dictionary::get(const String& key, RefPtrWillBeRawPtr<SpeechRecognitionResult>& value) const
|
| {
|
| v8::Local<v8::Value> v8Value;
|
| if (!getKey(key, v8Value))
|
| @@ -513,7 +513,7 @@ bool Dictionary::get(const String& key, RefPtr<SpeechRecognitionResult>& value)
|
| return true;
|
| }
|
|
|
| -bool Dictionary::get(const String& key, RefPtr<SpeechRecognitionResultList>& value) const
|
| +bool Dictionary::get(const String& key, RefPtrWillBeRawPtr<SpeechRecognitionResultList>& value) const
|
| {
|
| v8::Local<v8::Value> v8Value;
|
| if (!getKey(key, v8Value))
|
|
|