| Index: chrome/browser/android/tab_android.cc
|
| diff --git a/chrome/browser/android/tab_android.cc b/chrome/browser/android/tab_android.cc
|
| index 8b28116b8bf6d31305b2e82e1e5c8ff50ea68eef..46619ed20cc8db6d805f380be04bd94e4d1e9676 100644
|
| --- a/chrome/browser/android/tab_android.cc
|
| +++ b/chrome/browser/android/tab_android.cc
|
| @@ -63,6 +63,7 @@
|
| #include "components/offline_pages/offline_page_feature.h"
|
| #include "components/offline_pages/offline_page_item.h"
|
| #include "components/offline_pages/offline_page_model.h"
|
| +#include "components/sessions/content/content_open_tab.h"
|
| #include "components/url_formatter/url_fixer.h"
|
| #include "content/public/browser/android/compositor.h"
|
| #include "content/public/browser/android/content_view_core.h"
|
| @@ -736,7 +737,8 @@ void TabAndroid::CreateHistoricalTabFromContents(WebContents* web_contents) {
|
| }
|
|
|
| // TODO(jcivelli): is the index important?
|
| - service->CreateHistoricalTab(web_contents, -1);
|
| + service->CreateHistoricalTab(
|
| + sessions::ContentOpenTab::FromWebContents(web_contents), -1);
|
| }
|
|
|
| void TabAndroid::CreateHistoricalTab(JNIEnv* env, jobject obj) {
|
|
|