1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_UI_BROWSER_LIST_H_
6 #define CHROME_BROWSER_UI_BROWSER_LIST_H_
10 #include "base/basictypes.h"
11 #include "base/lazy_instance.h"
12 #include "base/observer_list.h"
13 #include "chrome/browser/ui/host_desktop.h"
19 class BrowserListObserver
;
22 // Maintains a list of Browser objects present in a given HostDesktop (see
26 typedef std::vector
<Browser
*> BrowserVector
;
27 typedef BrowserVector::const_iterator const_iterator
;
28 typedef BrowserVector::const_reverse_iterator const_reverse_iterator
;
30 // Returns the last active browser for this list.
31 Browser
* GetLastActive() const;
33 // Browsers are added to the list before they have constructed windows,
34 // so the |window()| member function may return NULL.
35 const_iterator
begin() const { return browsers_
.begin(); }
36 const_iterator
end() const { return browsers_
.end(); }
38 bool empty() const { return browsers_
.empty(); }
39 size_t size() const { return browsers_
.size(); }
41 Browser
* get(size_t index
) const { return browsers_
[index
]; }
43 // Returns iterated access to list of open browsers ordered by when
44 // they were last active. The underlying data structure is a vector
45 // and we push_back on recent access so a reverse iterator gives the
46 // latest accessed browser first.
47 const_reverse_iterator
begin_last_active() const {
48 return last_active_browsers_
.rbegin();
50 const_reverse_iterator
end_last_active() const {
51 return last_active_browsers_
.rend();
54 static BrowserList
* GetInstance(chrome::HostDesktopType type
);
56 // Adds or removes |browser| from the list it is associated with. The browser
57 // object should be valid BEFORE these calls (for the benefit of observers),
58 // so notify and THEN delete the object.
59 static void AddBrowser(Browser
* browser
);
60 static void RemoveBrowser(Browser
* browser
);
62 // Adds and removes |observer| from the observer list for all desktops.
63 // Observers are responsible for making sure the notifying browser is relevant
64 // to them (e.g., on the specific desktop they care about if any).
65 static void AddObserver(chrome::BrowserListObserver
* observer
);
66 static void RemoveObserver(chrome::BrowserListObserver
* observer
);
68 // Called by Browser objects when their window is activated (focused). This
69 // allows us to determine what the last active Browser was on each desktop.
70 // Note: This only takes effect on the appropriate browser list as determined
71 // by |browser->host_desktop_type()|.
72 static void SetLastActive(Browser
* browser
);
74 // Closes all browsers for |profile| across all desktops.
75 static void CloseAllBrowsersWithProfile(Profile
* profile
);
77 // Returns true if at least one incognito session is active across all
79 static bool IsOffTheRecordSessionActive();
81 // Returns true if at least one incognito session is active for |profile|
82 // across all desktops.
83 static bool IsOffTheRecordSessionActiveForProfile(Profile
* profile
);
89 // Helper method to remove a browser instance from a list of browsers
90 static void RemoveBrowserFrom(Browser
* browser
, BrowserVector
* browser_list
);
92 // A vector of the browsers in this list, in the order they were added.
93 BrowserVector browsers_
;
94 // A vector of the browsers in this list that have been activated, in the
95 // reverse order in which they were last activated.
96 BrowserVector last_active_browsers_
;
98 // A list of observers which will be notified of every browser addition and
99 // removal across all BrowserLists.
100 static base::LazyInstance
<ObserverList
<chrome::BrowserListObserver
> >::Leaky
103 // Nothing fancy, since we only have two HDTs.
104 static BrowserList
* native_instance_
;
105 static BrowserList
* ash_instance_
;
107 DISALLOW_COPY_AND_ASSIGN(BrowserList
);
110 #endif // CHROME_BROWSER_UI_BROWSER_LIST_H_