| Index: Source/bindings/v8/Dictionary.cpp
|
| diff --git a/Source/bindings/v8/Dictionary.cpp b/Source/bindings/v8/Dictionary.cpp
|
| index 82e5acab46b8aa9c0f1c5d4d78ff7ef9354da0f8..4c47ed8255a14073c4e641ed551d519fe0691320 100644
|
| --- a/Source/bindings/v8/Dictionary.cpp
|
| +++ b/Source/bindings/v8/Dictionary.cpp
|
| @@ -490,7 +490,7 @@ bool Dictionary::get(const String& key, RefPtr<SpeechRecognitionError>& value) c
|
| return true;
|
| }
|
|
|
| -bool Dictionary::get(const String& key, RefPtrWillBeRawPtr<SpeechRecognitionResult>& value) const
|
| +bool Dictionary::get(const String& key, RefPtrWillBeMember<SpeechRecognitionResult>& value) const
|
| {
|
| v8::Local<v8::Value> v8Value;
|
| if (!getKey(key, v8Value))
|
| @@ -500,7 +500,7 @@ bool Dictionary::get(const String& key, RefPtrWillBeRawPtr<SpeechRecognitionResu
|
| return true;
|
| }
|
|
|
| -bool Dictionary::get(const String& key, RefPtrWillBeRawPtr<SpeechRecognitionResultList>& value) const
|
| +bool Dictionary::get(const String& key, RefPtrWillBeMember<SpeechRecognitionResultList>& value) const
|
| {
|
| v8::Local<v8::Value> v8Value;
|
| if (!getKey(key, v8Value))
|
| @@ -660,7 +660,7 @@ bool Dictionary::convert(ConversionContext& context, const String& key, ArrayVal
|
| return get(key, value);
|
| }
|
|
|
| -bool Dictionary::get(const String& key, RefPtrWillBeRawPtr<DOMError>& value) const
|
| +bool Dictionary::get(const String& key, RefPtrWillBeMember<DOMError>& value) const
|
| {
|
| v8::Local<v8::Value> v8Value;
|
| if (!getKey(key, v8Value))
|
|
|