| Index: content/browser/compositor/delegated_frame_host.h
|
| diff --git a/content/browser/compositor/delegated_frame_host.h b/content/browser/compositor/delegated_frame_host.h
|
| index bcbc758ffadaff63f1960d9f630cc887b4a6ce61..3efe186ecae930dd3467ff798e49fb7978b8ee1f 100644
|
| --- a/content/browser/compositor/delegated_frame_host.h
|
| +++ b/content/browser/compositor/delegated_frame_host.h
|
| @@ -95,7 +95,7 @@ class CONTENT_EXPORT DelegatedFrameHost
|
| const gfx::Rect& src_subrect,
|
| const gfx::Size& dst_size,
|
| const base::Callback<void(bool, const SkBitmap&)>& callback,
|
| - const SkBitmap::Config config);
|
| + const SkColorType color_type);
|
| void CopyFromCompositingSurfaceToVideoFrame(
|
| const gfx::Rect& src_subrect,
|
| const scoped_refptr<media::VideoFrame>& target,
|
| @@ -172,17 +172,17 @@ class CONTENT_EXPORT DelegatedFrameHost
|
| // of the copy.
|
| static void CopyFromCompositingSurfaceHasResult(
|
| const gfx::Size& dst_size_in_pixel,
|
| - const SkBitmap::Config config,
|
| + const SkColorType color_type,
|
| const base::Callback<void(bool, const SkBitmap&)>& callback,
|
| scoped_ptr<cc::CopyOutputResult> result);
|
| static void PrepareTextureCopyOutputResult(
|
| const gfx::Size& dst_size_in_pixel,
|
| - const SkBitmap::Config config,
|
| + const SkColorType color_type,
|
| const base::Callback<void(bool, const SkBitmap&)>& callback,
|
| scoped_ptr<cc::CopyOutputResult> result);
|
| static void PrepareBitmapCopyOutputResult(
|
| const gfx::Size& dst_size_in_pixel,
|
| - const SkBitmap::Config config,
|
| + const SkColorType color_type,
|
| const base::Callback<void(bool, const SkBitmap&)>& callback,
|
| scoped_ptr<cc::CopyOutputResult> result);
|
| static void CopyFromCompositingSurfaceHasResultForVideo(
|
|
|