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

Unified Diff: third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp

Issue 2724543002: Renamed deviceScaleFactor() to deviceScaleFactorDeprecated() in Page (Closed)
Patch Set: Created 3 years, 10 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/page/scrolling/ScrollingCoordinator.cpp
diff --git a/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp b/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp
index de68c2a83cc0d2c6f0c380423af48cfda5970320..da9c42afbad34cbad5568e16eda34c7439e549fe 100644
--- a/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp
+++ b/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp
@@ -451,8 +451,8 @@ void ScrollingCoordinator::scrollableAreaScrollbarLayerDidChange(
scrollbar.theme().trackPosition(scrollbar),
scrollableArea->shouldPlaceVerticalScrollbarOnLeft());
} else {
- webScrollbarLayer =
- createScrollbarLayer(scrollbar, m_page->deviceScaleFactor());
+ webScrollbarLayer = createScrollbarLayer(
+ scrollbar, m_page->deviceScaleFactorDeprecated());
}
scrollbarLayer = addWebScrollbarLayer(scrollableArea, orientation,
std::move(webScrollbarLayer));

Powered by Google App Engine
This is Rietveld 408576698