| Index: chrome/browser/tabs/pinned_tab_codec.cc
|
| diff --git a/chrome/browser/tabs/pinned_tab_codec.cc b/chrome/browser/tabs/pinned_tab_codec.cc
|
| index 77337088f0eeec65fc352c2d9091143908d1382e..eaa02da1452d6a7442f428d0ad96b13c00a64740 100644
|
| --- a/chrome/browser/tabs/pinned_tab_codec.cc
|
| +++ b/chrome/browser/tabs/pinned_tab_codec.cc
|
| @@ -54,9 +54,9 @@ static void EncodePinnedTab(TabStripModel* model,
|
| values->Append(value.release());
|
| } else {
|
| NavigationEntry* entry =
|
| - tab_contents->tab_contents()->GetController().GetActiveEntry();
|
| - if (!entry && tab_contents->tab_contents()->GetController().entry_count())
|
| - entry = tab_contents->tab_contents()->GetController().GetEntryAtIndex(0);
|
| + tab_contents->tab_contents()->controller().GetActiveEntry();
|
| + if (!entry && tab_contents->tab_contents()->controller().entry_count())
|
| + entry = tab_contents->tab_contents()->controller().GetEntryAtIndex(0);
|
| if (entry) {
|
| value->SetString(kURL, entry->url().spec());
|
| values->Append(value.release());
|
|
|