| Index: third_party/WebKit/Source/core/input/TouchEventManager.cpp
|
| diff --git a/third_party/WebKit/Source/core/input/TouchEventManager.cpp b/third_party/WebKit/Source/core/input/TouchEventManager.cpp
|
| index 561061d82c32a9c1d2b18db0d5bc94dcdf87331b..ed39d8f9abacfd9d08cd423403e1436b867d3c58 100644
|
| --- a/third_party/WebKit/Source/core/input/TouchEventManager.cpp
|
| +++ b/third_party/WebKit/Source/core/input/TouchEventManager.cpp
|
| @@ -468,8 +468,9 @@ bool TouchEventManager::reHitTestTouchPointsIfNeeded(
|
| }
|
|
|
| ASSERT(m_frame->view());
|
| - if (m_touchSequenceDocument && (!m_touchSequenceDocument->frame() ||
|
| - !m_touchSequenceDocument->frame()->view())) {
|
| + if (m_touchSequenceDocument &&
|
| + (!m_touchSequenceDocument->frame() ||
|
| + !m_touchSequenceDocument->frame()->view())) {
|
| // If the active touch document has no frame or view, it's probably being
|
| // destroyed so we can't dispatch events.
|
| return false;
|
|
|