Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2249)

Unified Diff: chrome/browser/ui/browser.cc

Issue 10551002: TabContentsWrapper -> TabContents, part 56. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Not killing GetSelectedWebContents yet Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/browser.h ('k') | chrome/browser/ui/omnibox/omnibox_view_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « chrome/browser/ui/browser.h ('k') | chrome/browser/ui/omnibox/omnibox_view_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698