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

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 4f6f9054ad39c487557fcb8384c866ccbe58a860..03dabfada7a44ca249853f9ee39e5a3a7f5aed3e 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.cpp
+++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
@@ -4025,13 +4025,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