OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef ASH_SYSTEM_TRAY_TRAY_BACKGROUND_VIEW_H_ | 5 #ifndef ASH_SYSTEM_TRAY_TRAY_BACKGROUND_VIEW_H_ |
6 #define ASH_SYSTEM_TRAY_TRAY_BACKGROUND_VIEW_H_ | 6 #define ASH_SYSTEM_TRAY_TRAY_BACKGROUND_VIEW_H_ |
7 | 7 |
8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
9 #include "ash/launcher/background_animator.h" | 9 #include "ash/launcher/background_animator.h" |
10 #include "ash/shelf_types.h" | 10 #include "ash/shelf_types.h" |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
80 // Called whenever the shelf alignment changes. | 80 // Called whenever the shelf alignment changes. |
81 virtual void SetShelfAlignment(ShelfAlignment alignment); | 81 virtual void SetShelfAlignment(ShelfAlignment alignment); |
82 | 82 |
83 // Called when the anchor (tray or bubble) may have moved or changed. | 83 // Called when the anchor (tray or bubble) may have moved or changed. |
84 virtual void AnchorUpdated() {} | 84 virtual void AnchorUpdated() {} |
85 | 85 |
86 // Called from GetAccessibleState, must return a valid accessible name. | 86 // Called from GetAccessibleState, must return a valid accessible name. |
87 virtual string16 GetAccessibleNameForTray() = 0; | 87 virtual string16 GetAccessibleNameForTray() = 0; |
88 | 88 |
89 // Hides the bubble associated with |bubble_view|. Called when the widget | 89 // Hides the bubble associated with |bubble_view|. Called when the widget |
90 // is closed. | 90 // is closed. |bubble_view| may be already destroyed when it's called, so |
91 // any methods are called to |bubble_view| without any checks. | |
jennyz
2013/03/06 18:04:04
Can you be clearer about "any methods are called t
Jun Mukai
2013/03/07 00:26:42
removed the sentence of 'any methods...', I don't
| |
91 virtual void HideBubbleWithView(const views::TrayBubbleView* bubble_view) = 0; | 92 virtual void HideBubbleWithView(const views::TrayBubbleView* bubble_view) = 0; |
92 | 93 |
93 // Called by the bubble wrapper when a click event occurs outside the bubble. | 94 // Called by the bubble wrapper when a click event occurs outside the bubble. |
94 // May close the bubble. Returns true if the event is handled. | 95 // May close the bubble. Returns true if the event is handled. |
95 virtual bool ClickedOutsideBubble() = 0; | 96 virtual bool ClickedOutsideBubble() = 0; |
96 | 97 |
97 // Sets |contents| as a child. | 98 // Sets |contents| as a child. |
98 void SetContents(views::View* contents); | 99 void SetContents(views::View* contents); |
99 | 100 |
100 // Creates and sets contents background to |background_|. | 101 // Creates and sets contents background to |background_|. |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
160 scoped_ptr<TrayWidgetObserver> widget_observer_; | 161 scoped_ptr<TrayWidgetObserver> widget_observer_; |
161 scoped_ptr<TrayEventFilter> tray_event_filter_; | 162 scoped_ptr<TrayEventFilter> tray_event_filter_; |
162 | 163 |
163 DISALLOW_COPY_AND_ASSIGN(TrayBackgroundView); | 164 DISALLOW_COPY_AND_ASSIGN(TrayBackgroundView); |
164 }; | 165 }; |
165 | 166 |
166 } // namespace internal | 167 } // namespace internal |
167 } // namespace ash | 168 } // namespace ash |
168 | 169 |
169 #endif // ASH_SYSTEM_TRAY_TRAY_BACKGROUND_VIEW_H_ | 170 #endif // ASH_SYSTEM_TRAY_TRAY_BACKGROUND_VIEW_H_ |
OLD | NEW |