Send bounding Rect on tray double click events

This commit is contained in:
Nishanth Shanmugham 2015-07-25 20:56:35 -07:00
parent 7ceca9f426
commit f53995d555
6 changed files with 8 additions and 8 deletions

View file

@ -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() {