| Index: third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp
|
| diff --git a/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp b/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp
|
| index 49aa09d6ec0675dc706228616b466c96ab428f5b..9e4fa6f99617326c06213d4998ef37eb07106bd3 100644
|
| --- a/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp
|
| +++ b/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp
|
| @@ -128,6 +128,18 @@ void ScrollingCoordinator::notifyGeometryChanged() {
|
| m_shouldScrollOnMainThreadDirty = true;
|
| }
|
|
|
| +void ScrollingCoordinator::notifyTransformChanged(const LayoutBox& box) {
|
| + if (m_page->deprecatedLocalMainFrame()->view()->needsLayout())
|
| + return;
|
| +
|
| + for (PaintLayer* layer = box.enclosingLayer(); layer;
|
| + layer = layer->parent()) {
|
| + if (m_layersWithTouchRects.contains(layer)) {
|
| + m_touchEventTargetRectsAreDirty = true;
|
| + return;
|
| + }
|
| + }
|
| +}
|
| void ScrollingCoordinator::notifyOverflowUpdated() {
|
| m_scrollGestureRegionIsDirty = true;
|
| }
|
|
|