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

Unified Diff: third_party/WebKit/Source/platform/scroll/ScrollableArea.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/platform/scroll/ScrollableArea.h
diff --git a/third_party/WebKit/Source/platform/scroll/ScrollableArea.h b/third_party/WebKit/Source/platform/scroll/ScrollableArea.h
index f371838c013f549caca117a5e2b4500dd8c81fc2..b01d1bef4f790eb324f1ab06f4c0c9fb421dd711 100644
--- a/third_party/WebKit/Source/platform/scroll/ScrollableArea.h
+++ b/third_party/WebKit/Source/platform/scroll/ScrollableArea.h
@@ -84,7 +84,7 @@ public:
// The window that hosts the ScrollableArea. The ScrollableArea will communicate scrolls and repaints to the
// host window in the window's coordinate space.
- virtual HostWindow* hostWindow() const { return 0; }
+ virtual HostWindow* getHostWindow() const { return 0; }
virtual ScrollResult userScroll(ScrollGranularity, const FloatSize&);
@@ -273,7 +273,7 @@ public:
IntSize excludeScrollbars(const IntSize&) const;
// Returns the widget associated with this ScrollableArea.
- virtual Widget* widget() { return nullptr; }
+ virtual Widget* getWidget() { return nullptr; }
virtual bool isFrameView() const { return false; }
virtual bool isPaintLayerScrollableArea() const { return false; }

Powered by Google App Engine
This is Rietveld 408576698