Index: content/browser/renderer_host/render_widget_host_view_base.h |
diff --git a/content/browser/renderer_host/render_widget_host_view_base.h b/content/browser/renderer_host/render_widget_host_view_base.h |
index 25f551c6817b15cf6ade4b5948f8320eca4340ba..8f84a99a7f458c501238b61db68cca4118c78793 100644 |
--- a/content/browser/renderer_host/render_widget_host_view_base.h |
+++ b/content/browser/renderer_host/render_widget_host_view_base.h |
@@ -160,7 +160,7 @@ class CONTENT_EXPORT RenderWidgetHostViewBase : public RenderWidgetHostView, |
virtual void AccessibilityShowMenu(int acc_obj_id); |
virtual gfx::Point AccessibilityOriginInScreen(const gfx::Rect& bounds); |
- virtual SkBitmap::Config PreferredReadbackFormat(); |
+ virtual SkColorType PreferredReadbackFormat(); |
// Informs that the focused DOM node has changed. |
virtual void FocusedNodeChanged(bool is_editable_node) {} |
@@ -260,7 +260,7 @@ class CONTENT_EXPORT RenderWidgetHostViewBase : public RenderWidgetHostView, |
const gfx::Rect& src_subrect, |
const gfx::Size& dst_size, |
const base::Callback<void(bool, const SkBitmap&)>& callback, |
- const SkBitmap::Config config) = 0; |
+ const SkColorType color_type) = 0; |
// Copies a given subset of the compositing surface's content into a YV12 |
// VideoFrame, and invokes a callback with a success/fail parameter. |target| |