Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Unified Diff: ash/common/accessibility_delegate.h

Issue 2078393005: mash: Move accessibility_types.h from ui namespace to ash namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a11y
Patch Set: fix chromevox code generated from js Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/ash_touch_exploration_manager_chromeos.cc ('k') | ash/common/accessibility_types.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/accessibility_delegate.h
diff --git a/ash/common/accessibility_delegate.h b/ash/common/accessibility_delegate.h
index e351a6fcb73deea9c81658994d89a8ef9fed3409..0de724f727f478d2c7f19900ae054978d268dcf7 100644
--- a/ash/common/accessibility_delegate.h
+++ b/ash/common/accessibility_delegate.h
@@ -19,7 +19,7 @@ class ASH_EXPORT AccessibilityDelegate {
// Invoked to toggle spoken feedback for accessibility
virtual void ToggleSpokenFeedback(
- ui::AccessibilityNotificationVisibility notify) = 0;
+ AccessibilityNotificationVisibility notify) = 0;
// Returns true if spoken feedback is enabled.
virtual bool IsSpokenFeedbackEnabled() const = 0;
@@ -34,13 +34,13 @@ class ASH_EXPORT AccessibilityDelegate {
virtual void SetMagnifierEnabled(bool enabled) = 0;
// Invoked to change the type of the screen magnifier.
- virtual void SetMagnifierType(ui::MagnifierType type) = 0;
+ virtual void SetMagnifierType(MagnifierType type) = 0;
// Returns true if the screen magnifier is enabled.
virtual bool IsMagnifierEnabled() const = 0;
// Returns the current screen magnifier mode.
- virtual ui::MagnifierType GetMagnifierType() const = 0;
+ virtual MagnifierType GetMagnifierType() const = 0;
// Invoked to enable Large Cursor.
virtual void SetLargeCursorEnabled(bool enabled) = 0;
@@ -113,10 +113,10 @@ class ASH_EXPORT AccessibilityDelegate {
virtual double GetSavedScreenMagnifierScale() = 0;
// Triggers an accessibility alert to give the user feedback.
- virtual void TriggerAccessibilityAlert(ui::AccessibilityAlert alert) = 0;
+ virtual void TriggerAccessibilityAlert(AccessibilityAlert alert) = 0;
// Gets the last accessibility alert that was triggered.
- virtual ui::AccessibilityAlert GetLastAccessibilityAlert() = 0;
+ virtual AccessibilityAlert GetLastAccessibilityAlert() = 0;
// Plays an earcon. Earcons are brief and distinctive sounds that indicate
// when their mapped event has occurred. The sound key enums can be found in
« no previous file with comments | « ash/ash_touch_exploration_manager_chromeos.cc ('k') | ash/common/accessibility_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698