| 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 befac7aefb294146007a62a45e221b4cc7c804ab..0a1370d73a7aecdee00523e9222d0b24833cb64a 100644
|
| --- a/content/browser/android/content_view_core_impl.cc
|
| +++ b/content/browser/android/content_view_core_impl.cc
|
| @@ -30,6 +30,7 @@
|
| #include "content/browser/web_contents/navigation_controller_impl.h"
|
| #include "content/browser/web_contents/navigation_entry_impl.h"
|
| #include "content/browser/web_contents/web_contents_view_android.h"
|
| +#include "content/common/view_input_messages.h"
|
| #include "content/common/view_messages.h"
|
| #include "content/public/browser/browser_context.h"
|
| #include "content/public/browser/favicon_status.h"
|
| @@ -1325,8 +1326,8 @@ void ContentViewCoreImpl::ShowImeIfNeeded(JNIEnv* env, jobject obj) {
|
| void ContentViewCoreImpl::ScrollFocusedEditableNodeIntoView(JNIEnv* env,
|
| jobject obj) {
|
| RenderViewHost* host = web_contents_->GetRenderViewHost();
|
| - host->Send(new ViewMsg_ScrollFocusedEditableNodeIntoRect(host->GetRoutingID(),
|
| - gfx::Rect()));
|
| + host->Send(new ViewInputMsg_ScrollFocusedEditableNodeIntoRect(
|
| + host->GetRoutingID(), gfx::Rect()));
|
| }
|
|
|
| namespace {
|
|
|