chromium/chrome/browser/extensions/api/notifications/notifications_api.h

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {};

}  // namespace extensions

#endif  // CHROME_BROWSER_EXTENSIONS_API_NOTIFICATIONS_NOTIFICATIONS_API_H_