macOS implementation of notifications in the main process

This commit is contained in:
Samuel Attard 2017-04-23 22:16:19 +10:00
parent 37ed44cf1c
commit 5dd4d6a961
No known key found for this signature in database
GPG key ID: 273DC1869D8F13EF
9 changed files with 351 additions and 1 deletions

View file

@ -0,0 +1,22 @@
// Copyright (c) 2014 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef ATOM_BROWSER_UI_NOTIFICATION_OBSERVER_H_
#define ATOM_BROWSER_UI_NOTIFICATION_OBSERVER_H_
namespace atom {
class NotifictionObserver {
public:
virtual void OnClicked() {}
virtual void OnReplied(std::string reply) {}
virtual void OnShown() {}
protected:
virtual ~NotifictionObserver() {}
};
} // namespace atom
#endif // ATOM_BROWSER_UI_NOTIFICATION_OBSERVER_H_