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

Unified Diff: cc/playback/drawing_display_item.h

Issue 2678903003: cc: Clean up naming of paint-related identifiers (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: cc/playback/drawing_display_item.h
diff --git a/cc/playback/drawing_display_item.h b/cc/playback/drawing_display_item.h
index 871ad09d5f15780d399f000f8c97ef1b6941b88f..ef5f4d57d658479735175ecfba0caa9619811f15 100644
--- a/cc/playback/drawing_display_item.h
+++ b/cc/playback/drawing_display_item.h
@@ -23,7 +23,7 @@ namespace cc {
class CC_EXPORT DrawingDisplayItem : public DisplayItem {
public:
DrawingDisplayItem();
- explicit DrawingDisplayItem(sk_sp<const PaintRecord> picture);
+ explicit DrawingDisplayItem(sk_sp<const PaintRecord> record);
explicit DrawingDisplayItem(const DrawingDisplayItem& item);
~DrawingDisplayItem() override;
@@ -38,7 +38,7 @@ class CC_EXPORT DrawingDisplayItem : public DisplayItem {
void CloneTo(DrawingDisplayItem* item) const;
private:
- void SetNew(sk_sp<const PaintRecord> picture);
+ void SetNew(sk_sp<const PaintRecord> record);
sk_sp<const PaintRecord> picture_;
};

Powered by Google App Engine
This is Rietveld 408576698