diff options
Diffstat (limited to 'chrome/browser/ui/browser_list.h')
-rw-r--r-- | chrome/browser/ui/browser_list.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/chrome/browser/ui/browser_list.h b/chrome/browser/ui/browser_list.h index b12fe39..8b3ed14 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_iterator const_iterator; typedef BrowserVector::const_reverse_iterator const_reverse_iterator; // Adds and removes browsers from the global list. The browser object should @@ -39,11 +38,6 @@ class BrowserList { // Closes all browsers for |profile| across all desktops. static void CloseAllBrowsersWithProfile(Profile* profile); - // Browsers are added to the list before they have constructed windows, - // so the |window()| member function may return NULL. - static const_iterator begin(); - static const_iterator end(); - static bool empty(); static size_t size(); |