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

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

Issue 2737653004: UMA metrics for use count of wheel and touch scrolls. (Closed)
Patch Set: TODO for GRC usage added. Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/web/WebViewFrameWidget.h ('k') | third_party/WebKit/Source/web/WebViewImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebViewFrameWidget.cpp
diff --git a/third_party/WebKit/Source/web/WebViewFrameWidget.cpp b/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
index 7b662eba0c922c86733d48886116abb4573dd65f..81e1d0bec788b1a3a3d57280b27907f3ddd1a2ca 100644
--- a/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
+++ b/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
@@ -107,6 +107,13 @@ void WebViewFrameWidget::applyViewportDeltas(
scaleFactor, browserControlsShownRatioDelta);
}
+void WebViewFrameWidget::recordWheelAndTouchScrollingCount(
+ bool hasScrolledByWheel,
+ bool hasScrolledByTouch) {
+ return m_webView->recordWheelAndTouchScrollingCount(hasScrolledByWheel,
+ hasScrolledByTouch);
+}
+
void WebViewFrameWidget::mouseCaptureLost() {
return m_webView->mouseCaptureLost();
}
« no previous file with comments | « third_party/WebKit/Source/web/WebViewFrameWidget.h ('k') | third_party/WebKit/Source/web/WebViewImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698