Send bounding Rect on tray double click events
This commit is contained in:
parent
7ceca9f426
commit
f53995d555
6 changed files with 8 additions and 8 deletions
|
@ -33,8 +33,8 @@ void TrayIcon::NotifyClicked(const gfx::Rect& bounds) {
|
|||
FOR_EACH_OBSERVER(TrayIconObserver, observers_, OnClicked(bounds));
|
||||
}
|
||||
|
||||
void TrayIcon::NotifyDoubleClicked() {
|
||||
FOR_EACH_OBSERVER(TrayIconObserver, observers_, OnDoubleClicked());
|
||||
void TrayIcon::NotifyDoubleClicked(const gfx::Rect& bounds) {
|
||||
FOR_EACH_OBSERVER(TrayIconObserver, observers_, OnDoubleClicked(bounds));
|
||||
}
|
||||
|
||||
void TrayIcon::NotifyBalloonShow() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue