| Index: content/browser/android/content_view_core_impl.cc
|
| ===================================================================
|
| --- content/browser/android/content_view_core_impl.cc (revision 284124)
|
| +++ content/browser/android/content_view_core_impl.cc (working copy)
|
| @@ -1575,6 +1575,14 @@
|
| SetAccessibilityEnabledInternal(enabled);
|
| }
|
|
|
| +void ContentViewCoreImpl::ShowSelectionHandlesAutomatically() const {
|
| + JNIEnv* env = AttachCurrentThread();
|
| + ScopedJavaLocalRef<jobject> obj(java_ref_.get(env));
|
| + if (obj.is_null())
|
| + return;
|
| + Java_ContentViewCore_showSelectionHandlesAutomatically(env, obj.obj());
|
| +}
|
| +
|
| void ContentViewCoreImpl::SetAccessibilityEnabledInternal(bool enabled) {
|
| accessibility_enabled_ = enabled;
|
| RenderWidgetHostViewAndroid* host_view = GetRenderWidgetHostViewAndroid();
|
|
|