| Index: content/browser/android/content_view_core_impl.cc
|
| diff --git a/content/browser/android/content_view_core_impl.cc b/content/browser/android/content_view_core_impl.cc
|
| index 725207c64f47659db0216a07a8132d920f39dc27..5bbbec97cc7273970c797c73dac6c00d43cbb056 100644
|
| --- a/content/browser/android/content_view_core_impl.cc
|
| +++ b/content/browser/android/content_view_core_impl.cc
|
| @@ -704,14 +704,14 @@ void ContentViewCoreImpl::ShowPastePopup(int x_dip, int y_dip) {
|
| void ContentViewCoreImpl::GetScaledContentBitmap(
|
| float scale,
|
| gfx::Size* out_size,
|
| + bool config_565,
|
| const base::Callback<void(bool, const SkBitmap&)>& result_callback) {
|
| RenderWidgetHostViewAndroid* view = GetRenderWidgetHostViewAndroid();
|
| if (!view) {
|
| result_callback.Run(false, SkBitmap());
|
| return;
|
| }
|
| -
|
| - view->GetScaledContentBitmap(scale, out_size, result_callback);
|
| + view->GetScaledContentBitmap(scale, out_size, config_565, result_callback);
|
| }
|
|
|
| void ContentViewCoreImpl::StartContentIntent(const GURL& content_url) {
|
|
|