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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutObject.cpp

Issue 1774943003: blink: Rename platform/ methods to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-platform: rebase-yayyyyyyyy Created 4 years, 9 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/layout/LayoutObject.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
index 33b4a56edbe3e72860fb3273991789047d85105f..ef6a026f77b402aab4fa4d816f4e805d3ca4472d 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
@@ -1211,7 +1211,7 @@ static void invalidatePaintRectangleOnWindow(const LayoutBoxModelObject& paintIn
if (paintRect.isEmpty())
return;
- if (HostWindow* window = frameView->hostWindow())
+ if (HostWindow* window = frameView->getHostWindow())
window->invalidateRect(frameView->contentsToRootFrame(paintRect));
}
@@ -2769,7 +2769,7 @@ static bool findReferencingScrollAnchors(LayoutObject* layoutObject, FindReferen
// Walk up the layer tree to clear any scroll anchors that reference us.
while (layer) {
- if (PaintLayerScrollableArea* scrollableArea = layer->scrollableArea()) {
+ if (PaintLayerScrollableArea* scrollableArea = layer->getScrollableArea()) {
ScrollAnchor& anchor = scrollableArea->scrollAnchor();
if (anchor.anchorObject() == layoutObject) {
found = true;

Powered by Google App Engine
This is Rietveld 408576698