#ifndef ASH_ACCELERATORS_ACCELERATOR_NOTIFICATIONS_H_
#define ASH_ACCELERATORS_ACCELERATOR_NOTIFICATIONS_H_
#include "ash/ash_export.h"
#include "ash/public/cpp/accelerator_actions.h"
#include "ui/base/accelerators/accelerator.h"
namespace ash {
ASH_EXPORT extern const char kDockedMagnifierToggleAccelNotificationId[];
ASH_EXPORT extern const char kFullscreenMagnifierToggleAccelNotificationId[];
ASH_EXPORT extern const char kHighContrastToggleAccelNotificationId[];
ASH_EXPORT extern const char kKeyboardShortcutHelpPageUrl[];
ASH_EXPORT void MaybeShowDeprecatedAcceleratorNotification(
const char* notification_id,
int message_id,
int new_shortcut_id,
ui::Accelerator replacement,
AcceleratorAction action_id,
const char* pref_name);
ASH_EXPORT void ShowDockedMagnifierNotification();
ASH_EXPORT void ShowDockedMagnifierDisabledByAdminNotification(
bool feature_state);
ASH_EXPORT void RemoveDockedMagnifierNotification();
ASH_EXPORT void ShowFullscreenMagnifierNotification();
ASH_EXPORT void ShowFullscreenMagnifierDisabledByAdminNotification(
bool feature_state);
ASH_EXPORT void RemoveFullscreenMagnifierNotification();
ASH_EXPORT void ShowHighContrastNotification();
ASH_EXPORT void ShowHighContrastDisabledByAdminNotification(bool feature_state);
ASH_EXPORT void RemoveHighContrastNotification();
ASH_EXPORT void ShowSpokenFeedbackDisabledByAdminNotification(
bool feature_state);
ASH_EXPORT void RemoveSpokenFeedbackNotification();
}
#endif