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

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp

Issue 2873213002: Add PlatformFrameView class. (Closed)
Patch Set: #include PlatformFrameView inside platform.dll 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/core/paint/PaintLayerScrollableArea.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
index c3dcf5fc2a9a88ea94878a54c8eba71e1f94facf..fef30afdfad7a909217d58e949c98e9c91e8fca7 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
@@ -1943,7 +1943,7 @@ bool PaintLayerScrollableArea::VisualViewportSuppliesScrollbars() const {
bool PaintLayerScrollableArea::ScheduleAnimation() {
if (PlatformChromeClient* client = GetChromeClient()) {
- client->ScheduleAnimation(Box().GetFrame());
+ client->ScheduleAnimation(Box().GetFrame()->View());
return true;
}
return false;

Powered by Google App Engine
This is Rietveld 408576698