tray: send tray icon position as payload onclick OSX

This commit is contained in:
deepak1556 2015-05-01 15:24:22 +05:30
parent 4608f5e9cd
commit 6d7d068e49
8 changed files with 26 additions and 9 deletions

View file

@ -5,11 +5,15 @@
#ifndef ATOM_BROWSER_UI_TRAY_ICON_OBSERVER_H_
#define ATOM_BROWSER_UI_TRAY_ICON_OBSERVER_H_
namespace gfx {
class Point;
}
namespace atom {
class TrayIconObserver {
public:
virtual void OnClicked() {}
virtual void OnClicked(const gfx::Point&) {}
virtual void OnDoubleClicked() {}
virtual void OnBalloonShow() {}
virtual void OnBalloonClicked() {}