| Index: chrome/browser/sync/glue/synced_window_delegate_android.cc
|
| diff --git a/chrome/browser/sync/glue/synced_window_delegate_android.cc b/chrome/browser/sync/glue/synced_window_delegate_android.cc
|
| index 6eea8c5cbcfb857fa7b7d45cdc71167d19ecc813..66d9d21f76a7842002e0d17b8b5fbfb4ec21da4e 100644
|
| --- a/chrome/browser/sync/glue/synced_window_delegate_android.cc
|
| +++ b/chrome/browser/sync/glue/synced_window_delegate_android.cc
|
| @@ -7,6 +7,7 @@
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/ui/android/tab_model/tab_model.h"
|
| #include "chrome/browser/ui/android/tab_model/tab_model_list.h"
|
| +#include "chrome/browser/ui/sync/tab_contents_synced_tab_delegate.h"
|
| #include "chrome/browser/ui/tab_contents/tab_contents.h"
|
| #include "chrome/browser/sessions/session_id.h"
|
|
|
| @@ -77,7 +78,8 @@ bool SyncedWindowDelegateAndroid::IsTabPinned(
|
|
|
| SyncedTabDelegate* SyncedWindowDelegateAndroid::GetTabAt(int index) const {
|
| TabContents* tab_contents = tab_model_->GetTabContentsAt(index);
|
| - return tab_contents ? tab_contents->synced_tab_delegate() : NULL;
|
| + return tab_contents ? TabContentsSyncedTabDelegate::FromWebContents(
|
| + tab_contents->web_contents()) : NULL;
|
| }
|
|
|
| SessionID::id_type SyncedWindowDelegateAndroid::GetTabIdAt(int index) const {
|
|
|