| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "cc/paint/paint_image.h" | 5 #include "cc/paint/paint_image.h" |
| 6 | 6 |
| 7 namespace cc { | 7 namespace cc { |
| 8 | 8 |
| 9 base::AtomicSequenceNumber PaintImage::s_next_id_; | 9 base::AtomicSequenceNumber PaintImage::s_next_id_; |
| 10 | 10 |
| 11 PaintImage::PaintImage() = default; | 11 PaintImage::PaintImage() = default; |
| 12 PaintImage::PaintImage(Id id, | 12 PaintImage::PaintImage(Id id, |
| 13 sk_sp<SkImage> sk_image, | 13 sk_sp<SkImage> sk_image, |
| 14 AnimationType animation_type, | 14 AnimationType animation_type, |
| 15 CompletionState completion_state) | 15 CompletionState completion_state) |
| 16 : id_(id), | 16 : id_(id), |
| 17 sk_image_(std::move(sk_image)), | 17 sk_image_(std::move(sk_image)), |
| 18 animation_type_(animation_type), | 18 animation_type_(animation_type), |
| 19 completion_state_(completion_state) {} | 19 completion_state_(completion_state) {} |
| 20 PaintImage::PaintImage(const PaintImage& other) = default; | 20 PaintImage::PaintImage(const PaintImage& other) = default; |
| 21 PaintImage::PaintImage(PaintImage&& other) = default; | 21 PaintImage::PaintImage(PaintImage&& other) = default; |
| 22 PaintImage::~PaintImage() = default; | 22 PaintImage::~PaintImage() = default; |
| 23 | 23 |
| 24 PaintImage& PaintImage::operator=(const PaintImage& other) = default; | 24 PaintImage& PaintImage::operator=(const PaintImage& other) = default; |
| 25 PaintImage& PaintImage::operator=(PaintImage&& other) = default; | 25 PaintImage& PaintImage::operator=(PaintImage&& other) = default; |
| 26 | 26 |
| 27 bool PaintImage::operator==(const PaintImage& other) { | 27 bool PaintImage::operator==(const PaintImage& other) const { |
| 28 return id_ == other.id_ && sk_image_ == other.sk_image_ && | 28 return id_ == other.id_ && sk_image_ == other.sk_image_ && |
| 29 animation_type_ == other.animation_type_ && | 29 animation_type_ == other.animation_type_ && |
| 30 completion_state_ == other.completion_state_; | 30 completion_state_ == other.completion_state_; |
| 31 } | 31 } |
| 32 | 32 |
| 33 PaintImage::Id PaintImage::GetNextId() { | 33 PaintImage::Id PaintImage::GetNextId() { |
| 34 return s_next_id_.GetNext(); | 34 return s_next_id_.GetNext(); |
| 35 } | 35 } |
| 36 | 36 |
| 37 } // namespace cc | 37 } // namespace cc |
| OLD | NEW |