diff --git a/engine/src/flutter/flow/layer_snapshot_store.h b/engine/src/flutter/flow/layer_snapshot_store.h index eb444d2dcc3..2406335605c 100644 --- a/engine/src/flutter/flow/layer_snapshot_store.h +++ b/engine/src/flutter/flow/layer_snapshot_store.h @@ -10,8 +10,10 @@ #include "flutter/fml/logging.h" #include "flutter/fml/time/time_delta.h" -#include "third_party/skia/include/core/SkImageEncoder.h" +#include "third_party/skia/include/core/SkData.h" #include "third_party/skia/include/core/SkPictureRecorder.h" +#include "third_party/skia/include/core/SkRect.h" +#include "third_party/skia/include/core/SkRefCnt.h" #include "third_party/skia/include/core/SkSerialProcs.h" #include "third_party/skia/include/core/SkSurface.h" #include "third_party/skia/include/core/SkSurfaceCharacterization.h" diff --git a/engine/src/flutter/flow/layers/offscreen_surface.cc b/engine/src/flutter/flow/layers/offscreen_surface.cc index 199eace46d5..4f20fb0ac4e 100644 --- a/engine/src/flutter/flow/layers/offscreen_surface.cc +++ b/engine/src/flutter/flow/layers/offscreen_surface.cc @@ -4,10 +4,11 @@ #include "flutter/flow/layers/offscreen_surface.h" -#include "third_party/skia/include/core/SkImageEncoder.h" +#include "third_party/skia/include/core/SkColorSpace.h" +#include "third_party/skia/include/core/SkImageInfo.h" #include "third_party/skia/include/core/SkPictureRecorder.h" +#include "third_party/skia/include/core/SkPixmap.h" #include "third_party/skia/include/core/SkSerialProcs.h" -#include "third_party/skia/include/core/SkSurface.h" #include "third_party/skia/include/core/SkSurfaceCharacterization.h" #include "third_party/skia/include/utils/SkBase64.h" diff --git a/engine/src/flutter/flow/layers/offscreen_surface.h b/engine/src/flutter/flow/layers/offscreen_surface.h index 54e2fd2f6b0..6dabfb9eda6 100644 --- a/engine/src/flutter/flow/layers/offscreen_surface.h +++ b/engine/src/flutter/flow/layers/offscreen_surface.h @@ -10,6 +10,9 @@ #include "flutter/display_list/dl_canvas.h" #include "flutter/display_list/skia/dl_sk_canvas.h" +#include "third_party/skia/include/core/SkData.h" +#include "third_party/skia/include/core/SkRefCnt.h" +#include "third_party/skia/include/core/SkSize.h" #include "third_party/skia/include/core/SkSurface.h" class GrDirectContext; diff --git a/engine/src/flutter/shell/common/rasterizer.cc b/engine/src/flutter/shell/common/rasterizer.cc index 45335875da5..c2ae9dd1bed 100644 --- a/engine/src/flutter/shell/common/rasterizer.cc +++ b/engine/src/flutter/shell/common/rasterizer.cc @@ -15,9 +15,11 @@ #include "flutter/fml/time/time_point.h" #include "flutter/shell/common/serialization_callbacks.h" #include "fml/make_copyable.h" -#include "third_party/skia/include/core/SkImageEncoder.h" +#include "third_party/skia/include/core/SkImageInfo.h" +#include "third_party/skia/include/core/SkMatrix.h" #include "third_party/skia/include/core/SkPictureRecorder.h" #include "third_party/skia/include/core/SkSerialProcs.h" +#include "third_party/skia/include/core/SkSize.h" #include "third_party/skia/include/core/SkSurface.h" #include "third_party/skia/include/core/SkSurfaceCharacterization.h" #include "third_party/skia/include/utils/SkBase64.h" diff --git a/engine/src/flutter/shell/common/rasterizer.h b/engine/src/flutter/shell/common/rasterizer.h index 5249a4154cc..a122820c427 100644 --- a/engine/src/flutter/shell/common/rasterizer.h +++ b/engine/src/flutter/shell/common/rasterizer.h @@ -27,7 +27,10 @@ #include "flutter/shell/common/pipeline.h" #include "flutter/shell/common/snapshot_controller.h" #include "flutter/shell/common/snapshot_surface_producer.h" +#include "third_party/skia/include/core/SkData.h" #include "third_party/skia/include/core/SkImage.h" +#include "third_party/skia/include/core/SkRect.h" +#include "third_party/skia/include/core/SkRefCnt.h" #include "third_party/skia/include/gpu/GrDirectContext.h" namespace flutter {