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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/PaintArtifact.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/paint/PaintArtifact.h
diff --git a/third_party/WebKit/Source/platform/graphics/paint/PaintArtifact.h b/third_party/WebKit/Source/platform/graphics/paint/PaintArtifact.h
index 20ffee7c72bc133a3540a14f9891981f2c90e4eb..5edd8ff36b81871cace1ea3d61b116ef9329533a 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/PaintArtifact.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/PaintArtifact.h
@@ -43,8 +43,8 @@ public:
bool isEmpty() const { return m_displayItemList.isEmpty(); }
- DisplayItemList& displayItemList() { return m_displayItemList; }
- const DisplayItemList& displayItemList() const { return m_displayItemList; }
+ DisplayItemList& getDisplayItemList() { return m_displayItemList; }
+ const DisplayItemList& getDisplayItemList() const { return m_displayItemList; }
Vector<PaintChunk>& paintChunks() { return m_paintChunks; }
const Vector<PaintChunk>& paintChunks() const { return m_paintChunks; }

Powered by Google App Engine
This is Rietveld 408576698