| Index: third_party/WebKit/Source/core/editing/Editor.h
|
| diff --git a/third_party/WebKit/Source/core/editing/Editor.h b/third_party/WebKit/Source/core/editing/Editor.h
|
| index 86581ceb070c4bd71c86064dd3e84f0544db37c9..38c557e43c4cd4071ae124ca8f110a2d658f5da5 100644
|
| --- a/third_party/WebKit/Source/core/editing/Editor.h
|
| +++ b/third_party/WebKit/Source/core/editing/Editor.h
|
| @@ -142,7 +142,7 @@ public:
|
| private:
|
| LocalFrame& frame() const
|
| {
|
| - ASSERT(m_frame);
|
| + DCHECK(m_frame);
|
| return *m_frame;
|
| }
|
|
|
| @@ -261,7 +261,7 @@ private:
|
|
|
| LocalFrame& frame() const
|
| {
|
| - ASSERT(m_frame);
|
| + DCHECK(m_frame);
|
| return *m_frame;
|
| }
|
|
|
|
|