| Index: chrome/browser/android/chrome_web_contents_delegate_android.cc
|
| diff --git a/chrome/browser/android/chrome_web_contents_delegate_android.cc b/chrome/browser/android/chrome_web_contents_delegate_android.cc
|
| index 7a539e16a043007daea01f691fb707144c02d25f..a08686cbf36d115fb84ceee5aa9c9156aa2fd957 100644
|
| --- a/chrome/browser/android/chrome_web_contents_delegate_android.cc
|
| +++ b/chrome/browser/android/chrome_web_contents_delegate_android.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include "base/android/jni_android.h"
|
| #include "base/command_line.h"
|
| -#include "chrome/browser/android/tab_android.h"
|
| #include "chrome/browser/chrome_notification_types.h"
|
| #include "chrome/browser/file_select_helper.h"
|
| #include "chrome/browser/media/media_capture_devices_dispatcher.h"
|
| @@ -20,6 +19,7 @@
|
| #include "chrome/browser/ui/browser_navigator.h"
|
| #include "chrome/browser/ui/find_bar/find_notification_details.h"
|
| #include "chrome/browser/ui/find_bar/find_tab_helper.h"
|
| +#include "chrome/browser/ui/tab_helpers.h"
|
| #include "chrome/common/chrome_switches.h"
|
| #include "content/public/browser/notification_details.h"
|
| #include "content/public/browser/notification_service.h"
|
| @@ -305,7 +305,7 @@ void ChromeWebContentsDelegateAndroid::AddNewContents(
|
| // Can't create a new contents for the current tab - invalid case.
|
| DCHECK_NE(disposition, CURRENT_TAB);
|
|
|
| - TabAndroid::InitTabHelpers(new_contents);
|
| + TabHelpers::AttachTabHelpers(new_contents);
|
|
|
| JNIEnv* env = AttachCurrentThread();
|
| ScopedJavaLocalRef<jobject> obj = GetJavaDelegate(env);
|
|
|