| 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 c124bc2430a37943d3815514fd623f93cc559d96..943107df12bcc34707910809bd2cb421fbe4483c 100644
|
| --- a/content/browser/android/content_view_core_impl.cc
|
| +++ b/content/browser/android/content_view_core_impl.cc
|
| @@ -42,6 +42,7 @@
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/favicon_status.h"
|
| #include "content/public/browser/render_frame_host.h"
|
| +#include "content/public/browser/render_view_host.h"
|
| #include "content/public/browser/screen_orientation_dispatcher_host.h"
|
| #include "content/public/browser/ssl_host_state_delegate.h"
|
| #include "content/public/browser/web_contents.h"
|
| @@ -1408,7 +1409,7 @@ void ContentViewCoreImpl::ExtractSmartClipData(JNIEnv* env,
|
| static_cast<int>((height > 0 && height < dpi_scale()) ?
|
| 1 : (int)(height / dpi_scale())));
|
| GetWebContents()->Send(new ViewMsg_ExtractSmartClipData(
|
| - GetWebContents()->GetRoutingID(), rect));
|
| + GetWebContents()->GetRenderViewHost()->GetRoutingID(), rect));
|
| }
|
|
|
| jint ContentViewCoreImpl::GetCurrentRenderProcessId(
|
|
|