win: Add NotifyIcon::DisplayBalloon

This commit is contained in:
Cheng Zhao 2014-11-28 18:30:43 +08:00
parent 9f0b5a14a4
commit 2650e34867
4 changed files with 46 additions and 0 deletions

View file

@ -18,6 +18,11 @@ void TrayIcon::SetTitle(const std::string& title) {
void TrayIcon::SetHighlightMode(bool highlight) {
}
void TrayIcon::DisplayBalloon(const gfx::ImageSkia& icon,
const base::string16& title,
const base::string16& contents) {
}
void TrayIcon::NotifyClicked() {
FOR_EACH_OBSERVER(TrayIconObserver, observers_, OnClicked());
}