2014-05-30 10:31:27 +08:00
|
|
|
// Copyright (c) 2014 GitHub, Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "atom/browser/ui/tray_icon.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
2014-05-30 14:37:53 +08:00
|
|
|
TrayIcon::TrayIcon() {
|
2014-05-30 10:31:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TrayIcon::~TrayIcon() {
|
|
|
|
}
|
|
|
|
|
2014-06-02 11:08:29 +08:00
|
|
|
void TrayIcon::NotifyClicked() {
|
|
|
|
FOR_EACH_OBSERVER(TrayIconObserver, observers_, OnClicked());
|
|
|
|
}
|
|
|
|
|
2014-05-30 10:31:27 +08:00
|
|
|
} // namespace atom
|