Chromium Code Reviews| Index: ash/system/tray/system_tray.h |
| diff --git a/ash/system/tray/system_tray.h b/ash/system/tray/system_tray.h |
| index 57cc2e78add1162d83a6618434c39dfde7cdbe12..cc6627d6e55d31e9e8ecf200ad2fd4fad248fb98 100644 |
| --- a/ash/system/tray/system_tray.h |
| +++ b/ash/system/tray/system_tray.h |
| @@ -47,6 +47,7 @@ class SystemTrayItem; |
| namespace internal { |
| class SystemBubbleWrapper; |
| class SystemTrayContainer; |
| +class TrayAccessibility; |
| class TrayGestureHandler; |
| } |
| @@ -143,6 +144,10 @@ class ASH_EXPORT SystemTray : public internal::TrayBackgroundView, |
| AnchorAlignment anchor_alignment) OVERRIDE; |
| virtual void HideBubble(const views::TrayBubbleView* bubble_view) OVERRIDE; |
| + internal::TrayAccessibility* GetTrayAccessibilityForTest() { |
| + return tray_accessibility_; |
| + } |
| + |
| private: |
| // Creates the default set of items for the sytem tray. |
| void CreateItems(SystemTrayDelegate* delegate); |
| @@ -204,6 +209,8 @@ class ASH_EXPORT SystemTray : public internal::TrayBackgroundView, |
| // notification bubble is visible). |
| bool hide_notifications_; |
| + internal::TrayAccessibility* tray_accessibility_; // not own |
|
stevenjb
2012/12/14 00:38:28
nit: 'not owned' or 'unowned'
yoshiki
2012/12/14 06:10:19
Done.
|
| + |
| DISALLOW_COPY_AND_ASSIGN(SystemTray); |
| }; |