blob: 003764384123a180c3874002529322e067744ee3 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_ALERT_NOTIFICATION_SERVICE_H_
#define CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_ALERT_NOTIFICATION_SERVICE_H_
#import <Foundation/Foundation.h>
#import "chrome/browser/ui/cocoa/notifications/notification_delivery.h"
@class XPCTransactionHandler;
// Implementation of the NotificationDelivery protocol that can display
// notifications of type alert.
@interface AlertNotificationService : NSObject<NotificationDelivery>
- (instancetype)initWithTransactionHandler:(XPCTransactionHandler*)handler;
@end
#endif // CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_ALERT_NOTIFICATION_SERVICE_H_