| Index: chrome/browser/ui/browser.cc
|
| diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
|
| index dfdd7301e24b28257b1a7abc9de10ce8a1a8b596..316a662b198ee5ada0a6766c1bcbe1784fc3f38e 100644
|
| --- a/chrome/browser/ui/browser.cc
|
| +++ b/chrome/browser/ui/browser.cc
|
| @@ -1060,11 +1060,6 @@ int Browser::GetIndexOfController(
|
| return tab_strip_model_->GetIndexOfController(controller);
|
| }
|
|
|
| -// DEPRECATED
|
| -TabContents* Browser::GetSelectedTabContentsWrapper() const {
|
| - return GetActiveTabContents();
|
| -}
|
| -
|
| TabContents* Browser::GetActiveTabContents() const {
|
| return tab_strip_model_->GetActiveTabContents();
|
| }
|
| @@ -1079,11 +1074,6 @@ WebContents* Browser::GetActiveWebContents() const {
|
| return tab_contents ? tab_contents->web_contents() : NULL;
|
| }
|
|
|
| -// DEPRECATED
|
| -TabContents* Browser::GetTabContentsWrapperAt(int index) const {
|
| - return GetTabContentsAt(index);
|
| -}
|
| -
|
| TabContents* Browser::GetTabContentsAt(int index) const {
|
| return tab_strip_model_->GetTabContentsAt(index);
|
| }
|
|
|