Overload method for naming consistency
This commit is contained in:
parent
75b990faff
commit
0b7a629a41
3 changed files with 6 additions and 6 deletions
|
@ -116,14 +116,14 @@ void CocoaNotification::NotificationReplied(const std::string& reply) {
|
|||
this->LogAction("replied to");
|
||||
}
|
||||
|
||||
void CocoaNotification::NotificationButtonClicked() {
|
||||
void CocoaNotification::NotificationActivated() {
|
||||
if (delegate())
|
||||
delegate()->NotificationAction(action_index_);
|
||||
|
||||
this->LogAction("button clicked");
|
||||
}
|
||||
|
||||
void CocoaNotification::NotificationAdditionalActionClicked(NSUserNotificationAction* action) {
|
||||
void CocoaNotification::NotificationActivated(NSUserNotificationAction* action) {
|
||||
if (delegate()) {
|
||||
unsigned index = action_index_;
|
||||
std::string identifier = base::SysNSStringToUTF8(action.identifier);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue