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

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

Issue 1486743002: Clean up some remaining obsolete coordinate-space naming. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed Mac compile Created 5 years 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.h
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
index 606c563f291115167a56c1d84bb573be06fd1c5f..46ace1f5842f14e78e52e2089184b8bb27c6ff43 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
+++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
@@ -193,10 +193,10 @@ public:
bool isActive() const override;
bool isScrollCornerVisible() const override;
IntRect scrollCornerRect() const override;
- IntRect convertFromScrollbarToContainingView(const Scrollbar*, const IntRect&) const override;
- IntRect convertFromContainingViewToScrollbar(const Scrollbar*, const IntRect&) const override;
- IntPoint convertFromScrollbarToContainingView(const Scrollbar*, const IntPoint&) const override;
- IntPoint convertFromContainingViewToScrollbar(const Scrollbar*, const IntPoint&) const override;
+ IntRect convertFromScrollbarToContainingWidget(const Scrollbar*, const IntRect&) const override;
+ IntRect convertFromContainingWidgetToScrollbar(const Scrollbar*, const IntRect&) const override;
+ IntPoint convertFromScrollbarToContainingWidget(const Scrollbar*, const IntPoint&) const override;
+ IntPoint convertFromContainingWidgetToScrollbar(const Scrollbar*, const IntPoint&) const override;
int scrollSize(ScrollbarOrientation) const override;
IntPoint scrollPosition() const override;
DoublePoint scrollPositionDouble() const override;

Powered by Google App Engine
This is Rietveld 408576698