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

Unified Diff: third_party/WebKit/Source/core/frame/FrameView.cpp

Issue 2730773003: Rename FrameViewBase fields and methods *Widget* to ...FrameViewBase... (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/frame/FrameView.cpp
diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
index 5c8e3d3fd04e922c3d92b20fee456927195938ce..373b7e4fb0ef065afa6b7483a2c730af77320fef 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
@@ -3556,7 +3556,8 @@ IntPoint FrameView::convertToLayoutItem(const LayoutItem& layoutItem,
return roundedIntPoint(layoutItem.absoluteToLocal(point, UseTransforms));
}
-IntRect FrameView::convertToContainingWidget(const IntRect& localRect) const {
+IntRect FrameView::convertToContainingFrameViewBase(
+ const IntRect& localRect) const {
if (const FrameView* parentView = toFrameView(parent())) {
// Get our layoutObject in the parent view
LayoutPartItem layoutItem = m_frame->ownerLayoutItem();
@@ -3573,7 +3574,7 @@ IntRect FrameView::convertToContainingWidget(const IntRect& localRect) const {
return localRect;
}
-IntRect FrameView::convertFromContainingWidget(
+IntRect FrameView::convertFromContainingFrameViewBase(
const IntRect& parentRect) const {
if (const FrameView* parentView = toFrameView(parent())) {
// Get our layoutObject in the parent view
@@ -3591,7 +3592,7 @@ IntRect FrameView::convertFromContainingWidget(
return parentRect;
}
-IntPoint FrameView::convertToContainingWidget(
+IntPoint FrameView::convertToContainingFrameViewBase(
const IntPoint& localPoint) const {
if (const FrameView* parentView = toFrameView(parent())) {
// Get our layoutObject in the parent view
@@ -3610,7 +3611,7 @@ IntPoint FrameView::convertToContainingWidget(
return localPoint;
}
-IntPoint FrameView::convertFromContainingWidget(
+IntPoint FrameView::convertFromContainingFrameViewBase(
const IntPoint& parentPoint) const {
if (const FrameView* parentView = toFrameView(parent())) {
// Get our layoutObject in the parent view
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameView.h ('k') | third_party/WebKit/Source/platform/FrameViewBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698