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

Unified Diff: cc/paint/paint_image.cc

Issue 2939243002: cc/blink: Veto checker-imaging for multipart image resources. (Closed)
Patch Set: tested Created 3 years, 6 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/paint_image.h ('k') | cc/tiles/checker_image_tracker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/paint/paint_image.cc
diff --git a/cc/paint/paint_image.cc b/cc/paint/paint_image.cc
index a13b972b88bdcb5fd33b5ff6abfa56b98d887f65..d751b4773d778e06b0151a1f605082a89c7570e3 100644
--- a/cc/paint/paint_image.cc
+++ b/cc/paint/paint_image.cc
@@ -15,12 +15,14 @@ PaintImage::PaintImage(Id id,
sk_sp<SkImage> sk_image,
AnimationType animation_type,
CompletionState completion_state,
- size_t frame_count)
+ size_t frame_count,
+ bool is_multipart)
: id_(id),
sk_image_(std::move(sk_image)),
animation_type_(animation_type),
completion_state_(completion_state),
- frame_count_(frame_count) {}
+ frame_count_(frame_count),
+ is_multipart_(is_multipart) {}
PaintImage::PaintImage(const PaintImage& other) = default;
PaintImage::PaintImage(PaintImage&& other) = default;
PaintImage::~PaintImage() = default;
@@ -32,7 +34,8 @@ 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_ &&
- frame_count_ == other.frame_count_;
+ frame_count_ == other.frame_count_ &&
+ is_multipart_ == other.is_multipart_;
}
PaintImage::Id PaintImage::GetNextId() {
« no previous file with comments | « cc/paint/paint_image.h ('k') | cc/tiles/checker_image_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698