#ifndef CHROME_BROWSER_EXTENSIONS_API_NOTIFICATIONS_NOTIFICATIONS_API_H_
#define CHROME_BROWSER_EXTENSIONS_API_NOTIFICATIONS_NOTIFICATIONS_API_H_
#include <string>
#include "chrome/common/extensions/api/notifications.h"
#include "extensions/browser/extension_function.h"
#include "ui/message_center/public/cpp/notification_types.h"
class Profile;
namespace message_center {
class Notification;
}
namespace extensions {
class ExtensionNotificationDisplayHelper;
class NotificationsApiFunction : public ExtensionFunction { … };
class NotificationsCreateFunction : public NotificationsApiFunction { … };
class NotificationsUpdateFunction : public NotificationsApiFunction { … };
class NotificationsClearFunction : public NotificationsApiFunction { … };
class NotificationsGetAllFunction : public NotificationsApiFunction { … };
class NotificationsGetPermissionLevelFunction
: public NotificationsApiFunction { … };
}
#endif