| 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 52f3f2acf1d95a87ebbdeccc7f98644e2c495beb..a3a94151bffecf50f9d55af7be4f716ce6254b84 100644
|
| --- a/content/browser/android/content_view_core_impl.cc
|
| +++ b/content/browser/android/content_view_core_impl.cc
|
| @@ -1586,6 +1586,15 @@ bool ContentViewCoreImpl::WillHandleDeferAfterResponseStarted() {
|
| obj.obj());
|
| }
|
|
|
| +void ContentViewCoreImpl::DidStartNavigationTransitionForFrame(int64 frame_id) {
|
| + JNIEnv* env = AttachCurrentThread();
|
| + ScopedJavaLocalRef<jobject> obj(java_ref_.get(env));
|
| + if (obj.is_null())
|
| + return;
|
| + Java_ContentViewCore_didStartNavigationTransitionForFrame(
|
| + env, obj.obj(), frame_id);
|
| +}
|
| +
|
| void ContentViewCoreImpl::OnSmartClipDataExtracted(
|
| const base::string16& text,
|
| const base::string16& html,
|
|
|