| Index: content/browser/web_contents/web_contents_impl.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
|
| index 307e3fc64903bfe5bd14401e86a16e665fcc792a..9fac4c9cfb410dac4f03abc1c34e9decfbcf9a60 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -137,6 +137,7 @@
|
| #include "third_party/WebKit/public/web/WebSandboxFlags.h"
|
| #include "third_party/skia/include/core/SkBitmap.h"
|
| #include "ui/accessibility/ax_tree_combiner.h"
|
| +#include "ui/android/event_handler.h"
|
| #include "ui/base/layout.h"
|
| #include "ui/events/blink/web_input_event_traits.h"
|
| #include "ui/gl/gl_switches.h"
|
| @@ -5298,6 +5299,11 @@ void WebContentsImpl::SetHasPersistentVideo(bool value) {
|
| }
|
|
|
| #if defined(OS_ANDROID)
|
| +base::android::ScopedJavaLocalRef<jobject>
|
| +WebContentsImpl::CreateJavaEventHandlerFromNative() {
|
| + return GetNativeView()->CreateEventHandler()->CreateJavaObject();
|
| +}
|
| +
|
| void WebContentsImpl::NotifyFindMatchRectsReply(
|
| int version,
|
| const std::vector<gfx::RectF>& rects,
|
|
|