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

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

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/frame/FrameView.h
diff --git a/third_party/WebKit/Source/core/frame/FrameView.h b/third_party/WebKit/Source/core/frame/FrameView.h
index f17b7c51fd374cbcac61d3b5bc8d8fce46842d7a..4212e5c35b30489dd7211baef141ae4b6d6e02a8 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.h
+++ b/third_party/WebKit/Source/core/frame/FrameView.h
@@ -373,7 +373,7 @@ public:
bool isScrollCornerVisible() const override;
bool userInputScrollable(ScrollbarOrientation) const override;
bool shouldPlaceVerticalScrollbarOnLeft() const override;
- Widget* widget() override;
+ Widget* getWidget() override;
LayoutRect scrollIntoView(
const LayoutRect& rectInContent,
@@ -383,7 +383,7 @@ public:
// The window that hosts the FrameView. The FrameView will communicate scrolls and repaints to the
// host window in the window's coordinate space.
- HostWindow* hostWindow() const;
+ HostWindow* getHostWindow() const;
// Returns a clip rect in host window coordinates. Used to clip the blit on a scroll.
IntRect windowClipRect(IncludeScrollbarsInRect = ExcludeScrollbars) const;
@@ -548,11 +548,11 @@ public:
// be the RootFrameViewport, which adds pinch-zoom semantics to scrolling.
// For non-root frames, this will be the the ScrollableArea used by the
// FrameView, depending on whether root-layer-scrolls is enabled.
- ScrollableArea* scrollableArea();
+ ScrollableArea* getScrollableArea();
// Used to get at the underlying layoutViewport in the rare instances where
// we actually want to scroll *just* the layout viewport (e.g. when sending
- // deltas from CC). For typical scrolling cases, use scrollableArea().
+ // deltas from CC). For typical scrolling cases, use getScrollableArea().
ScrollableArea* layoutViewportScrollableArea();
int viewportWidth() const;
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameSerializer.cpp ('k') | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698