| 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 9aa69cdf7daa3a7578068240ec0373366ffd46e7..02f01262ca3d15328609838a828489c85456e9a6 100644
|
| --- a/content/browser/android/content_view_core_impl.cc
|
| +++ b/content/browser/android/content_view_core_impl.cc
|
| @@ -379,7 +379,11 @@ 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,
|
| + bool has_insertion_marker,
|
| + float insertion_marker_x,
|
| + float insertion_marker_top,
|
| + float insertion_marker_bottom) {
|
| JNIEnv* env = AttachCurrentThread();
|
| ScopedJavaLocalRef<jobject> obj = java_ref_.get(env);
|
| if (obj.is_null())
|
| @@ -400,7 +404,11 @@ void ContentViewCoreImpl::UpdateFrameInfo(
|
| viewport_size.width(),
|
| viewport_size.height(),
|
| controls_offset.y(),
|
| - content_offset.y());
|
| + content_offset.y(),
|
| + has_insertion_marker,
|
| + insertion_marker_x,
|
| + insertion_marker_top,
|
| + insertion_marker_bottom);
|
| }
|
|
|
| void ContentViewCoreImpl::SetTitle(const base::string16& title) {
|
|
|