OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SystemTrayItem
(Results
1 - 25
of
65
) sorted by null
1
2
3
/external/chromium_org/ash/system/tray/
system_tray_item.cc
14
SystemTrayItem
::
SystemTrayItem
(SystemTray* system_tray)
19
SystemTrayItem
::~
SystemTrayItem
() {
22
views::View*
SystemTrayItem
::CreateTrayView(user::LoginStatus status) {
26
views::View*
SystemTrayItem
::CreateDefaultView(user::LoginStatus status) {
30
views::View*
SystemTrayItem
::CreateDetailedView(user::LoginStatus status) {
34
views::View*
SystemTrayItem
::CreateNotificationView(user::LoginStatus status) {
38
void
SystemTrayItem
::DestroyTrayView() {
41
void
SystemTrayItem
::DestroyDefaultView()
[
all
...]
system_tray.h
25
class
SystemTrayItem
;
51
void AddTrayItem(
SystemTrayItem
* item);
54
void RemoveTrayItem(
SystemTrayItem
* item);
57
const std::vector<
SystemTrayItem
*>& GetTrayItems() const;
70
void ShowDetailedView(
SystemTrayItem
* item,
80
void HideDetailedView(
SystemTrayItem
* item);
83
void ShowNotificationView(
SystemTrayItem
* item);
86
void HideNotificationView(
SystemTrayItem
* item);
155
views::View* GetTrayItemViewForTest(
SystemTrayItem
* tray_item);
173
int GetTrayXOffset(
SystemTrayItem
* item) const
[
all
...]
system_tray_item.h
26
class ASH_EXPORT
SystemTrayItem
{
28
explicit
SystemTrayItem
(SystemTray* system_tray);
29
virtual ~
SystemTrayItem
();
120
DISALLOW_COPY_AND_ASSIGN(
SystemTrayItem
);
tray_details_view.h
18
class
SystemTrayItem
;
28
explicit TrayDetailsView(
SystemTrayItem
* owner);
50
SystemTrayItem
* owner() const { return owner_; }
61
SystemTrayItem
* owner_;
tray_item_more.h
19
class
SystemTrayItem
;
27
TrayItemMore(
SystemTrayItem
* owner, bool show_more);
30
SystemTrayItem
* owner() const { return owner_; }
50
SystemTrayItem
* owner_;
system_tray_bubble.h
19
class
SystemTrayItem
;
32
const std::vector<ash::
SystemTrayItem
*>& items,
37
void UpdateView(const std::vector<ash::
SystemTrayItem
*>& items,
70
std::vector<ash::
SystemTrayItem
*> items_;
tray_item_view.h
23
class
SystemTrayItem
;
33
explicit TrayItemView(
SystemTrayItem
* owner);
42
SystemTrayItem
* owner() const { return owner_; }
74
SystemTrayItem
* owner_;
tray_notification_view.h
22
class
SystemTrayItem
;
36
TrayNotificationView(
SystemTrayItem
* owner, int icon_id);
79
SystemTrayItem
* owner() { return owner_; }
85
SystemTrayItem
* owner_;
tray_empty.h
13
class TrayEmpty : public
SystemTrayItem
{
19
// Overridden from
SystemTrayItem
.
tray_details_view_unittest.cc
35
explicit TestDetailsView(
SystemTrayItem
* owner)
55
class TestItem : public
SystemTrayItem
{
57
TestItem() :
SystemTrayItem
(GetSystemTray()), tray_view_(NULL) {}
59
// Overridden from
SystemTrayItem
:
system_tray.cc
148
for (std::vector<
SystemTrayItem
*>::iterator it = items_.begin();
228
void SystemTray::AddTrayItem(
SystemTrayItem
* item) {
242
void SystemTray::RemoveTrayItem(
SystemTrayItem
* item) {
246
const std::vector<
SystemTrayItem
*>& SystemTray::GetTrayItems() const {
270
void SystemTray::ShowDetailedView(
SystemTrayItem
* item,
274
std::vector<
SystemTrayItem
*> items;
286
void SystemTray::HideDetailedView(
SystemTrayItem
* item) {
293
void SystemTray::ShowNotificationView(
SystemTrayItem
* item) {
301
void SystemTray::HideNotificationView(
SystemTrayItem
* item) {
302
std::vector<
SystemTrayItem
*>::iterator found_iter
[
all
...]
/external/chromium_org/ash/system/chromeos/network/
network_detailed_view.h
26
explicit NetworkDetailedView(
SystemTrayItem
* owner)
tray_sms.h
17
class TraySms : public
SystemTrayItem
,
23
// Overridden from
SystemTrayItem
.
tray_vpn.h
23
class TrayVPN : public
SystemTrayItem
,
29
//
SystemTrayItem
/external/chromium_org/ash/system/chromeos/enterprise/
tray_enterprise.h
21
class TrayEnterprise : public
SystemTrayItem
,
32
// Overridden from
SystemTrayItem
.
tray_enterprise.cc
18
:
SystemTrayItem
(system_tray),
/external/chromium_org/ash/system/monitor/
tray_monitor.h
21
class TrayMonitor : public
SystemTrayItem
{
27
// Overridden from
SystemTrayItem
.
/external/chromium_org/ash/system/chromeos/managed/
tray_locally_managed_user.h
20
class ASH_EXPORT TrayLocallyManagedUser : public
SystemTrayItem
,
30
// Overridden from
SystemTrayItem
.
/external/chromium_org/ash/system/chromeos/settings/
tray_settings.h
17
class TraySettings : public
SystemTrayItem
{
23
// Overridden from
SystemTrayItem
/external/chromium_org/ash/system/user/
tray_user_separator.cc
15
:
SystemTrayItem
(system_tray),
tray_user_separator.h
17
class ASH_EXPORT TrayUserSeparator : public
SystemTrayItem
{
26
// Overridden from
SystemTrayItem
.
/external/chromium_org/ash/system/bluetooth/
tray_bluetooth.h
19
class TrayBluetooth : public
SystemTrayItem
,
26
// Overridden from
SystemTrayItem
.
/external/chromium_org/ash/system/chromeos/brightness/
tray_brightness.h
20
class TrayBrightness : public
SystemTrayItem
,
36
// Overridden from
SystemTrayItem
.
/external/chromium_org/ash/system/chromeos/
tray_display.h
25
class ASH_EXPORT TrayDisplay : public
SystemTrayItem
,
60
// Overridden from
SystemTrayItem
.
/external/chromium_org/ash/system/ime/
tray_ime.h
29
class TrayIME : public
SystemTrayItem
,
44
// Overridden from
SystemTrayItem
.
Completed in 437 milliseconds
1
2
3