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

Unified Diff: third_party/WebKit/Source/platform/graphics/GraphicsLayer.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/graphics/GraphicsLayer.h
diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.h b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.h
index 88e1335d7633289e2005496329b1f5a563e273de..489d010600917660f02fb9a3c932d4e1c45cda8e 100644
--- a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.h
+++ b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.h
@@ -219,10 +219,10 @@ public:
void removeLinkHighlight(LinkHighlight*);
// Exposed for tests
unsigned numLinkHighlights() { return m_linkHighlights.size(); }
- LinkHighlight* linkHighlight(int i) { return m_linkHighlights[i]; }
+ LinkHighlight* getLinkHighlight(int i) { return m_linkHighlights[i]; }
void setScrollableArea(ScrollableArea*, bool isViewport);
- ScrollableArea* scrollableArea() const { return m_scrollableArea; }
+ ScrollableArea* getScrollableArea() const { return m_scrollableArea; }
WebContentLayer* contentLayer() const { return m_layer.get(); }
@@ -238,7 +238,7 @@ public:
// cc::LayerClient implementation.
scoped_ptr<base::trace_event::ConvertableToTraceFormat> TakeDebugInfo(cc::Layer*) override;
- PaintController& paintController();
+ PaintController& getPaintController();
// Exposed for tests.
WebLayer* contentsLayer() const { return m_contentsLayer; }

Powered by Google App Engine
This is Rietveld 408576698