| Index: Source/web/WebSpeechGrammar.cpp
|
| diff --git a/Source/web/WebSpeechGrammar.cpp b/Source/web/WebSpeechGrammar.cpp
|
| index c8a292aa7879ac074951d81d7b167007d9c17118..3d95263f959ccfa1a24d607268e5be2323a71974 100644
|
| --- a/Source/web/WebSpeechGrammar.cpp
|
| +++ b/Source/web/WebSpeechGrammar.cpp
|
| @@ -41,12 +41,12 @@
|
| m_private = other.m_private;
|
| }
|
|
|
| -WebSpeechGrammar::WebSpeechGrammar(WebCore::SpeechGrammar* value)
|
| +WebSpeechGrammar::WebSpeechGrammar(const PassRefPtrWillBeRawPtr<WebCore::SpeechGrammar>& value)
|
| : m_private(value)
|
| {
|
| }
|
|
|
| -WebSpeechGrammar& WebSpeechGrammar::operator=(WebCore::SpeechGrammar* value)
|
| +WebSpeechGrammar& WebSpeechGrammar::operator=(const PassRefPtrWillBeRawPtr<WebCore::SpeechGrammar>& value)
|
| {
|
| m_private = value;
|
| return *this;
|
|
|