Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(718)

Unified Diff: third_party/WebKit/Source/web/WebViewImpl.cpp

Issue 2877893002: Make UseCounter take a LocaFrame instead of any Frame (Closed)
Patch Set: rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() {

Powered by Google App Engine
This is Rietveld 408576698