| 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 4cbc111c061ef455bca4c69ed80b63af6bcfb8b6..1bba0caf07b006647375cd390e9885803503c5ac 100644
|
| --- a/content/browser/android/content_view_core_impl.cc
|
| +++ b/content/browser/android/content_view_core_impl.cc
|
| @@ -1330,6 +1330,14 @@ void ContentViewCoreImpl::OnShowUnhandledTapUIIfNeeded(int x_dip, int y_dip) {
|
| static_cast<jint>(y_dip * dpi_scale()));
|
| }
|
|
|
| +void ContentViewCoreImpl::GenerateNewFrameForTesting() {
|
| + JNIEnv* env = AttachCurrentThread();
|
| + ScopedJavaLocalRef<jobject> obj = java_ref_.get(env);
|
| + if (obj.is_null())
|
| + return;
|
| + Java_ContentViewCore_generateNewFrameForTesting(env, obj.obj());
|
| +}
|
| +
|
| void ContentViewCoreImpl::OnSmartClipDataExtracted(
|
| const base::string16& text,
|
| const base::string16& html,
|
|
|