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

Unified Diff: cc/playback/transform_display_item.h

Issue 1982893002: [blimp] Add SkPicture caching support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments from vmpstr, including adding //cc/blimp Created 4 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/playback/recording_source_unittest.cc ('k') | cc/playback/transform_display_item.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/playback/transform_display_item.h
diff --git a/cc/playback/transform_display_item.h b/cc/playback/transform_display_item.h
index c547332ecc0a4e3e21deff644099dc28d75d9738..661c5fd3f02ae48d8d06940bc496765250a5d6f0 100644
--- a/cc/playback/transform_display_item.h
+++ b/cc/playback/transform_display_item.h
@@ -17,7 +17,6 @@
class SkCanvas;
namespace cc {
-class ImageSerializationProcessor;
class CC_EXPORT TransformDisplayItem : public DisplayItem {
public:
@@ -25,9 +24,7 @@ class CC_EXPORT TransformDisplayItem : public DisplayItem {
explicit TransformDisplayItem(const proto::DisplayItem& proto);
~TransformDisplayItem() override;
- void ToProtobuf(proto::DisplayItem* proto,
- ImageSerializationProcessor* image_serialization_processor)
- const override;
+ void ToProtobuf(proto::DisplayItem* proto) const override;
void Raster(SkCanvas* canvas,
SkPicture::AbortCallback* callback) const override;
void AsValueInto(const gfx::Rect& visual_rect,
@@ -52,9 +49,7 @@ class CC_EXPORT EndTransformDisplayItem : public DisplayItem {
return base::WrapUnique(new EndTransformDisplayItem());
}
- void ToProtobuf(proto::DisplayItem* proto,
- ImageSerializationProcessor* image_serialization_processor)
- const override;
+ void ToProtobuf(proto::DisplayItem* proto) const override;
void Raster(SkCanvas* canvas,
SkPicture::AbortCallback* callback) const override;
void AsValueInto(const gfx::Rect& visual_rect,
« no previous file with comments | « cc/playback/recording_source_unittest.cc ('k') | cc/playback/transform_display_item.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698