| 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 2f120b4511d01ce73d18e2b3d173c4ebffe5cb14..e23a16602281f42aa1091dc2b8c31489db60ce5a 100644
|
| --- a/content/browser/android/content_view_core_impl.cc
|
| +++ b/content/browser/android/content_view_core_impl.cc
|
| @@ -691,6 +691,7 @@ void ContentViewCoreImpl::ShowPastePopup(int x_dip, int y_dip) {
|
|
|
| void ContentViewCoreImpl::GetScaledContentBitmap(
|
| float scale,
|
| + gfx::Rect src_subrect,
|
| gfx::Size* out_size,
|
| const base::Callback<void(bool, const SkBitmap&)>& result_callback) {
|
| RenderWidgetHostViewAndroid* view = GetRenderWidgetHostViewAndroid();
|
| @@ -699,7 +700,7 @@ void ContentViewCoreImpl::GetScaledContentBitmap(
|
| return;
|
| }
|
|
|
| - view->GetScaledContentBitmap(scale, out_size, result_callback);
|
| + view->GetScaledContentBitmap(scale, src_subrect, out_size, result_callback);
|
| }
|
|
|
| void ContentViewCoreImpl::StartContentIntent(const GURL& content_url) {
|
|
|