summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/browser_list.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/browser_list.h')
-rw-r--r--chrome/browser/ui/browser_list.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/chrome/browser/ui/browser_list.h b/chrome/browser/ui/browser_list.h
index eb48b2f..0559c62 100644
--- a/chrome/browser/ui/browser_list.h
+++ b/chrome/browser/ui/browser_list.h
@@ -20,7 +20,6 @@ class BrowserListObserver;
class BrowserList {
public:
typedef std::vector<Browser*> BrowserVector;
- typedef BrowserVector::const_reverse_iterator const_reverse_iterator;
// Adds and removes browsers from the list they are associated with. The
// browser object should be valid BEFORE these calls (for the benefit of
@@ -39,13 +38,6 @@ class BrowserList {
// Closes all browsers for |profile| across all desktops.
static void CloseAllBrowsersWithProfile(Profile* profile);
- // Returns iterated access to list of open browsers ordered by when
- // they were last active. The underlying data structure is a vector
- // and we push_back on recent access so a reverse iterator gives the
- // latest accessed browser first.
- static const_reverse_iterator begin_last_active();
- static const_reverse_iterator end_last_active();
-
// Returns true if at least one incognito session is active.
static bool IsOffTheRecordSessionActive();