| Index: cc/paint/clip_path_display_item.h
|
| diff --git a/cc/paint/clip_path_display_item.h b/cc/paint/clip_path_display_item.h
|
| index 54de999223369da3cb67902bad8631846043e4ca..960697dc62eb946cc58e954f60ed9c98e43823a5 100644
|
| --- a/cc/paint/clip_path_display_item.h
|
| +++ b/cc/paint/clip_path_display_item.h
|
| @@ -23,7 +23,7 @@ class CC_PAINT_EXPORT ClipPathDisplayItem : public DisplayItem {
|
| // may well be shared anyway).
|
| return 0;
|
| }
|
| - int ApproximateOpCount() const { return 1; }
|
| + int OpCount() const { return 1; }
|
|
|
| const SkPath clip_path;
|
| const bool antialias;
|
| @@ -34,7 +34,7 @@ class CC_PAINT_EXPORT EndClipPathDisplayItem : public DisplayItem {
|
| EndClipPathDisplayItem();
|
| ~EndClipPathDisplayItem() override;
|
|
|
| - int ApproximateOpCount() const { return 0; }
|
| + int OpCount() const { return 0; }
|
| };
|
|
|
| } // namespace cc
|
|
|