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

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

Issue 2845583002: Remove FrameViewBase as base class of RemoteFrameView. (Closed)
Patch Set: fix scrollbar inactive Created 3 years, 8 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 ce48c55fb9b17b064537b3b24b6160eee2b6f83b..69e0961ecf8b1a3e5c23e0fad0ea677a9a12d365 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
@@ -315,7 +315,7 @@ IntRect PaintLayerScrollableArea::ScrollCornerRect() const {
return IntRect();
}
-IntRect PaintLayerScrollableArea::ConvertFromScrollbarToContainingFrameViewBase(
+IntRect PaintLayerScrollableArea::ConvertFromScrollbarToContainingFrameView(
const Scrollbar& scrollbar,
const IntRect& scrollbar_rect) const {
LayoutView* view = Box().View();
@@ -329,8 +329,7 @@ IntRect PaintLayerScrollableArea::ConvertFromScrollbarToContainingFrameViewBase(
rect);
}
-IntPoint
-PaintLayerScrollableArea::ConvertFromScrollbarToContainingFrameViewBase(
+IntPoint PaintLayerScrollableArea::ConvertFromScrollbarToContainingFrameView(
const Scrollbar& scrollbar,
const IntPoint& scrollbar_point) const {
LayoutView* view = Box().View();
@@ -343,8 +342,7 @@ PaintLayerScrollableArea::ConvertFromScrollbarToContainingFrameViewBase(
point);
}
-IntPoint
-PaintLayerScrollableArea::ConvertFromContainingFrameViewBaseToScrollbar(
+IntPoint PaintLayerScrollableArea::ConvertFromContainingFrameViewToScrollbar(
const Scrollbar& scrollbar,
const IntPoint& parent_point) const {
LayoutView* view = Box().View();

Powered by Google App Engine
This is Rietveld 408576698