Index: content/browser/renderer_host/render_widget_host_view_mac.mm |
diff --git a/content/browser/renderer_host/render_widget_host_view_mac.mm b/content/browser/renderer_host/render_widget_host_view_mac.mm |
index 66d5f3134a53b7f86d0744bfa4917fd612c8afc5..67102ba0020d6d821a9b1e773c3a16e4402c53ef 100644 |
--- a/content/browser/renderer_host/render_widget_host_view_mac.mm |
+++ b/content/browser/renderer_host/render_widget_host_view_mac.mm |
@@ -1117,8 +1117,8 @@ void RenderWidgetHostViewMac::CopyFromCompositingSurface( |
const gfx::Rect& src_subrect, |
const gfx::Size& dst_size, |
const base::Callback<void(bool, const SkBitmap&)>& callback, |
- bool readback_config_rgb565) { |
- if (readback_config_rgb565) { |
+ const SkBitmap::Config config) { |
+ if (config != SkBitmap::kARGB_8888_Config) { |
NOTIMPLEMENTED(); |
callback.Run(false, SkBitmap()); |
} |