| Index: Source/web/WebSpeechInputResult.cpp
|
| diff --git a/Source/web/WebSpeechInputResult.cpp b/Source/web/WebSpeechInputResult.cpp
|
| index 6120d8f74cca0abd040cdf44ce740ec9576c3b51..a6fa69c00f63d53bc616a5bcf1814144541e4e4b 100644
|
| --- a/Source/web/WebSpeechInputResult.cpp
|
| +++ b/Source/web/WebSpeechInputResult.cpp
|
| @@ -38,7 +38,7 @@ void WebSpeechInputResult::reset()
|
| m_private.reset();
|
| }
|
|
|
| -WebSpeechInputResult::WebSpeechInputResult(const PassRefPtr<WebCore::SpeechInputResult>& value)
|
| +WebSpeechInputResult::WebSpeechInputResult(const PassRefPtrWillBeRawPtr<WebCore::SpeechInputResult>& value)
|
| : m_private(value)
|
| {
|
| }
|
| @@ -53,7 +53,7 @@ void WebSpeechInputResult::assign(const WebSpeechInputResult& other)
|
| m_private = WebCore::SpeechInputResult::create(*other.m_private.get());
|
| }
|
|
|
| -WebSpeechInputResult::operator PassRefPtr<WebCore::SpeechInputResult>() const
|
| +WebSpeechInputResult::operator PassRefPtrWillBeRawPtr<WebCore::SpeechInputResult>() const
|
| {
|
| return m_private.get();
|
| }
|
|
|