| Index: third_party/WebKit/Source/core/editing/FrameSelection.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/FrameSelection.cpp b/third_party/WebKit/Source/core/editing/FrameSelection.cpp
|
| index aa0b479dc4111fd7ec7b355ef9618fb8f3046c6a..d9d9bbb899178de5cc51f463887711f9e3c39d0c 100644
|
| --- a/third_party/WebKit/Source/core/editing/FrameSelection.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/FrameSelection.cpp
|
| @@ -107,6 +107,9 @@ FrameSelection::FrameSelection(LocalFrame* frame)
|
| , m_shouldShowBlockCursor(false)
|
| , m_caretBase(adoptPtr(new CaretBase))
|
| {
|
| + // TODO(yosin): We should remove null check for |m_frame| in
|
| + // "FrameSelection.cpp", since it never be null.
|
| + DCHECK(frame);
|
| if (shouldAlwaysUseDirectionalSelection(m_frame))
|
| m_selectionEditor->setIsDirectional(true);
|
| }
|
|
|