| Index: third_party/WebKit/Source/web/WebViewImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| index c747a7a757324c489e17ca875e76a4684fed4138..fc0e5ab70db496325074d06dae66914824c49f88 100644
|
| --- a/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| @@ -4031,13 +4031,13 @@ void WebViewImpl::ApplyViewportDeltas(
|
| void WebViewImpl::RecordWheelAndTouchScrollingCount(
|
| bool has_scrolled_by_wheel,
|
| bool has_scrolled_by_touch) {
|
| - if (!GetPage() || !GetPage()->MainFrame())
|
| + if (!MainFrameImpl())
|
| return;
|
|
|
| if (has_scrolled_by_wheel)
|
| - UseCounter::Count(GetPage()->MainFrame(), UseCounter::kScrollByWheel);
|
| + UseCounter::Count(MainFrameImpl()->GetFrame(), UseCounter::kScrollByWheel);
|
| if (has_scrolled_by_touch)
|
| - UseCounter::Count(GetPage()->MainFrame(), UseCounter::kScrollByTouch);
|
| + UseCounter::Count(MainFrameImpl()->GetFrame(), UseCounter::kScrollByTouch);
|
| }
|
|
|
| void WebViewImpl::UpdateLayerTreeViewport() {
|
|
|