| 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 f59129f2966e76a0984665b39eac3eac0387e625..0d589c2ecbb8455cdecafb82982b0a197aa58a4a 100644
|
| --- a/content/browser/android/content_view_core_impl.cc
|
| +++ b/content/browser/android/content_view_core_impl.cc
|
| @@ -375,7 +375,8 @@ void ContentViewCoreImpl::UpdateFrameInfo(
|
| const gfx::SizeF& content_size,
|
| const gfx::SizeF& viewport_size,
|
| const gfx::Vector2dF& controls_offset,
|
| - const gfx::Vector2dF& content_offset) {
|
| + const gfx::Vector2dF& content_offset,
|
| + float overdraw_bottom_height) {
|
| JNIEnv* env = AttachCurrentThread();
|
| ScopedJavaLocalRef<jobject> obj = java_ref_.get(env);
|
| if (obj.is_null())
|
| @@ -393,7 +394,8 @@ void ContentViewCoreImpl::UpdateFrameInfo(
|
| viewport_size.width(),
|
| viewport_size.height(),
|
| controls_offset.y(),
|
| - content_offset.y());
|
| + content_offset.y(),
|
| + overdraw_bottom_height);
|
|
|
| for (size_t i = 0; i < update_frame_info_callbacks_.size(); ++i) {
|
| update_frame_info_callbacks_[i].Run(
|
|
|