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

Unified Diff: third_party/WebKit/Source/core/frame/RootFrameViewport.cpp

Issue 2467693002: Implement overlay scrollbar fade out for non-composited scrollers. (Closed)
Patch Set: sigh....git cl format Created 4 years, 1 month 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/core/frame/RootFrameViewport.cpp
diff --git a/third_party/WebKit/Source/core/frame/RootFrameViewport.cpp b/third_party/WebKit/Source/core/frame/RootFrameViewport.cpp
index 36872d44553d09851b8c7c0f2559ee2338565068..611d449105b25e19151eec919936b23baba360eb 100644
--- a/third_party/WebKit/Source/core/frame/RootFrameViewport.cpp
+++ b/third_party/WebKit/Source/core/frame/RootFrameViewport.cpp
@@ -447,10 +447,10 @@ Widget* RootFrameViewport::getWidget() {
return visualViewport().getWidget();
}
-void RootFrameViewport::clearScrollAnimators() {
- ScrollableArea::clearScrollAnimators();
- layoutViewport().clearScrollAnimators();
- visualViewport().clearScrollAnimators();
+void RootFrameViewport::clearScrollableArea() {
+ ScrollableArea::clearScrollableArea();
+ layoutViewport().clearScrollableArea();
+ visualViewport().clearScrollableArea();
}
DEFINE_TRACE(RootFrameViewport) {
« no previous file with comments | « third_party/WebKit/Source/core/frame/RootFrameViewport.h ('k') | third_party/WebKit/Source/core/paint/PaintLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698