| 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 2441db90b5c8c31a22408abb2a571390c9469dad..2622bb8e675c99014d946bdd0bb25b2498b1ab4f 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;
|
| }
|
|
|
|
|