| Index: third_party/WebKit/Source/web/WebSpeechGrammar.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebSpeechGrammar.cpp b/third_party/WebKit/Source/web/WebSpeechGrammar.cpp
|
| index 7d5a6c0c3d6126decdcb932812b3dd4632b59673..b6a82a4650cfb1f799bd9274bcde61034c958743 100644
|
| --- a/third_party/WebKit/Source/web/WebSpeechGrammar.cpp
|
| +++ b/third_party/WebKit/Source/web/WebSpeechGrammar.cpp
|
| @@ -48,13 +48,13 @@ WebSpeechGrammar& WebSpeechGrammar::operator=(SpeechGrammar* value)
|
|
|
| WebURL WebSpeechGrammar::src() const
|
| {
|
| - BLINK_ASSERT(m_private.get());
|
| + DCHECK(m_private.get());
|
| return m_private->src();
|
| }
|
|
|
| float WebSpeechGrammar::weight() const
|
| {
|
| - BLINK_ASSERT(m_private.get());
|
| + DCHECK(m_private.get());
|
| return m_private->weight();
|
| }
|
|
|
|
|