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

Unified Diff: ash/default_accessibility_delegate.h

Issue 682943002: Make chrome/browser/chromeos/accessibility compile on Athena with use_ash=0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@athena_do_not_use_ash41_scroll_end_effect
Patch Set: Created 6 years, 2 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/default_accessibility_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/default_accessibility_delegate.h
diff --git a/ash/default_accessibility_delegate.h b/ash/default_accessibility_delegate.h
index a9604b7b336514155d82f405dd7b48b133c75611..5680fc01e16a036482eabf803634d2d6e789bae6 100644
--- a/ash/default_accessibility_delegate.h
+++ b/ash/default_accessibility_delegate.h
@@ -21,9 +21,9 @@ class ASH_EXPORT DefaultAccessibilityDelegate : public AccessibilityDelegate {
void ToggleHighContrast() override;
bool IsHighContrastEnabled() const override;
void SetMagnifierEnabled(bool enabled) override;
- void SetMagnifierType(MagnifierType type) override;
+ void SetMagnifierType(ui::MagnifierType type) override;
bool IsMagnifierEnabled() const override;
- MagnifierType GetMagnifierType() const override;
+ ui::MagnifierType GetMagnifierType() const override;
void SetLargeCursorEnabled(bool enabled) override;
bool IsLargeCursorEnabled() const override;
void SetAutoclickEnabled(bool enabled) override;
@@ -34,11 +34,11 @@ class ASH_EXPORT DefaultAccessibilityDelegate : public AccessibilityDelegate {
bool IsBrailleDisplayConnected() const override;
void SilenceSpokenFeedback() const override;
void ToggleSpokenFeedback(
- AccessibilityNotificationVisibility notify) override;
+ ui::AccessibilityNotificationVisibility notify) override;
void SaveScreenMagnifierScale(double scale) override;
double GetSavedScreenMagnifierScale() override;
- void TriggerAccessibilityAlert(AccessibilityAlert alert) override;
- AccessibilityAlert GetLastAccessibilityAlert() override;
+ void TriggerAccessibilityAlert(ui::AccessibilityAlert alert) override;
+ ui::AccessibilityAlert GetLastAccessibilityAlert() override;
void PlayEarcon(int sound_key) override;
base::TimeDelta PlayShutdownSound() const override;
@@ -46,11 +46,11 @@ class ASH_EXPORT DefaultAccessibilityDelegate : public AccessibilityDelegate {
bool spoken_feedback_enabled_;
bool high_contrast_enabled_;
bool screen_magnifier_enabled_;
- MagnifierType screen_magnifier_type_;
+ ui::MagnifierType screen_magnifier_type_;
bool large_cursor_enabled_;
bool autoclick_enabled_;
bool virtual_keyboard_enabled_;
- AccessibilityAlert accessibility_alert_;
+ ui::AccessibilityAlert accessibility_alert_;
DISALLOW_COPY_AND_ASSIGN(DefaultAccessibilityDelegate);
};
« no previous file with comments | « ash/ash_touch_exploration_manager_chromeos.cc ('k') | ash/default_accessibility_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698