blob: e0976d1b8d7bda1edfe799a0bf34c99880294cf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_list_impl.h"
#include "chrome/browser/ui/browser_list_observer.h"
using content::WebContents;
namespace {
chrome::BrowserListImpl* GetNativeList() {
return chrome::BrowserListImpl::GetInstance(chrome::HOST_DESKTOP_TYPE_NATIVE);
}
} // namespace
// static
void BrowserList::AddBrowser(Browser* browser) {
chrome::BrowserListImpl::GetInstance(browser->host_desktop_type())->
AddBrowser(browser);
}
// static
void BrowserList::RemoveBrowser(Browser* browser) {
chrome::BrowserListImpl::GetInstance(browser->host_desktop_type())->
RemoveBrowser(browser);
}
// static
void BrowserList::AddObserver(chrome::BrowserListObserver* observer) {
GetNativeList()->AddObserver(observer);
}
// static
void BrowserList::RemoveObserver(chrome::BrowserListObserver* observer) {
GetNativeList()->RemoveObserver(observer);
}
void BrowserList::CloseAllBrowsersWithProfile(Profile* profile) {
GetNativeList()->CloseAllBrowsersWithProfile(profile);
}
// static
BrowserList::const_iterator BrowserList::begin() {
return GetNativeList()->begin();
}
// static
BrowserList::const_iterator BrowserList::end() {
return GetNativeList()->end();
}
// static
bool BrowserList::empty() {
return GetNativeList()->empty();
}
// static
size_t BrowserList::size() {
return GetNativeList()->size();
}
// static
void BrowserList::SetLastActive(Browser* browser) {
GetNativeList()->SetLastActive(browser);
}
// static
BrowserList::const_reverse_iterator BrowserList::begin_last_active() {
return GetNativeList()->begin_last_active();
}
// static
BrowserList::const_reverse_iterator BrowserList::end_last_active() {
return GetNativeList()->end_last_active();
}
// static
bool BrowserList::IsOffTheRecordSessionActive() {
return GetNativeList()->IsIncognitoWindowOpen();
}
// static
bool BrowserList::IsOffTheRecordSessionActiveForProfile(Profile* profile) {
return GetNativeList()->IsIncognitoWindowOpenForProfile(profile);
}
|