| Index: cc/paint/paint_image.cc
|
| diff --git a/cc/paint/paint_image.cc b/cc/paint/paint_image.cc
|
| index 085ef24c65dbe61ca233753e96b7ea7fb9b1c6da..5575cbdad186db3652d9ec787c45b49fff4950c6 100644
|
| --- a/cc/paint/paint_image.cc
|
| +++ b/cc/paint/paint_image.cc
|
| @@ -26,7 +26,7 @@ PaintImage::~PaintImage() = default;
|
| PaintImage& PaintImage::operator=(const PaintImage& other) = default;
|
| PaintImage& PaintImage::operator=(PaintImage&& other) = default;
|
|
|
| -bool PaintImage::operator==(const PaintImage& other) {
|
| +bool PaintImage::operator==(const PaintImage& other) const {
|
| return id_ == other.id_ && sk_image_ == other.sk_image_ &&
|
| animation_type_ == other.animation_type_ &&
|
| completion_state_ == other.completion_state_;
|
|
|