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

Unified Diff: cc/paint/float_clip_display_item.h

Issue 2884563004: cc: Renamed approximate{BytesUsed,OpCount} in paint op buffer. (Closed)
Patch Set: winfix Created 3 years, 7 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
« no previous file with comments | « cc/paint/filter_display_item.h ('k') | cc/paint/paint_op_buffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/paint/float_clip_display_item.h
diff --git a/cc/paint/float_clip_display_item.h b/cc/paint/float_clip_display_item.h
index 43d751b36ce9ceeae6d02b1abfeb00527e7a7d55..b2703c860ca48e445afad09596dea81a62f38fd6 100644
--- a/cc/paint/float_clip_display_item.h
+++ b/cc/paint/float_clip_display_item.h
@@ -19,7 +19,7 @@ class CC_PAINT_EXPORT FloatClipDisplayItem : public DisplayItem {
~FloatClipDisplayItem() override;
size_t ExternalMemoryUsage() const { return 0; }
- int ApproximateOpCount() const { return 1; }
+ int OpCount() const { return 1; }
const gfx::RectF clip_rect;
};
@@ -29,7 +29,7 @@ class CC_PAINT_EXPORT EndFloatClipDisplayItem : public DisplayItem {
EndFloatClipDisplayItem();
~EndFloatClipDisplayItem() override;
- int ApproximateOpCount() const { return 0; }
+ int OpCount() const { return 0; }
};
} // namespace cc
« no previous file with comments | « cc/paint/filter_display_item.h ('k') | cc/paint/paint_op_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698