| Index: chrome/browser/android/tab_android.cc
|
| diff --git a/chrome/browser/android/tab_android.cc b/chrome/browser/android/tab_android.cc
|
| index dc111c20b20b36a59494212ed6e7ef7e6f864973..69a6f4c37f7cfd5757d20ee878adb4c29df6c1a4 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_live_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::ContentLiveTab::FromWebContents(web_contents), -1);
|
| }
|
|
|
| void TabAndroid::CreateHistoricalTab(JNIEnv* env, jobject obj) {
|
|
|