| 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 340aba161ab810f999891cf06db99d25c8fc66af..284ffdb05fa9b6e3f9fddaccaf4467691493294c 100644
|
| --- a/content/browser/android/content_view_core_impl.cc
|
| +++ b/content/browser/android/content_view_core_impl.cc
|
| @@ -1656,6 +1656,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 gfx::Rect& clip_rect,
|
| const base::string16& result) {
|
|
|