| 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 68cf0c50e04bb77711663cdc34694289f335f329..7bc95876f37a9c3c7847fd6c2f1aba0348e7fab7 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(
|
|
|