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

Unified Diff: ash/common/default_accessibility_delegate.cc

Issue 2729363002: chromeos: Move files in //ash/common to //ash, part 3 (Closed)
Patch Set: Created 3 years, 9 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/common/default_accessibility_delegate.h ('k') | ash/common/devtools/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/default_accessibility_delegate.cc
diff --git a/ash/common/default_accessibility_delegate.cc b/ash/common/default_accessibility_delegate.cc
deleted file mode 100644
index 6a1bd37b533a239a73267a72f67ba76ed05d9b29..0000000000000000000000000000000000000000
--- a/ash/common/default_accessibility_delegate.cc
+++ /dev/null
@@ -1,165 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "ash/common/default_accessibility_delegate.h"
-
-#include <limits>
-
-namespace ash {
-
-DefaultAccessibilityDelegate::DefaultAccessibilityDelegate() {}
-
-DefaultAccessibilityDelegate::~DefaultAccessibilityDelegate() {}
-
-bool DefaultAccessibilityDelegate::IsSpokenFeedbackEnabled() const {
- return spoken_feedback_enabled_;
-}
-
-void DefaultAccessibilityDelegate::ToggleHighContrast() {
- high_contrast_enabled_ = !high_contrast_enabled_;
-}
-
-bool DefaultAccessibilityDelegate::IsHighContrastEnabled() const {
- return high_contrast_enabled_;
-}
-
-void DefaultAccessibilityDelegate::SetMagnifierEnabled(bool enabled) {
- screen_magnifier_enabled_ = enabled;
-}
-
-void DefaultAccessibilityDelegate::SetMagnifierType(MagnifierType type) {
- screen_magnifier_type_ = type;
-}
-
-bool DefaultAccessibilityDelegate::IsMagnifierEnabled() const {
- return screen_magnifier_enabled_;
-}
-
-MagnifierType DefaultAccessibilityDelegate::GetMagnifierType() const {
- return screen_magnifier_type_;
-}
-
-void DefaultAccessibilityDelegate::SetLargeCursorEnabled(bool enabled) {
- large_cursor_enabled_ = enabled;
-}
-
-bool DefaultAccessibilityDelegate::IsLargeCursorEnabled() const {
- return large_cursor_enabled_;
-}
-
-void DefaultAccessibilityDelegate::SetAutoclickEnabled(bool enabled) {
- autoclick_enabled_ = enabled;
-}
-
-bool DefaultAccessibilityDelegate::IsAutoclickEnabled() const {
- return autoclick_enabled_;
-}
-
-void DefaultAccessibilityDelegate::SetVirtualKeyboardEnabled(bool enabled) {
- virtual_keyboard_enabled_ = enabled;
-}
-
-bool DefaultAccessibilityDelegate::IsVirtualKeyboardEnabled() const {
- return virtual_keyboard_enabled_;
-}
-
-void DefaultAccessibilityDelegate::SetMonoAudioEnabled(bool enabled) {
- mono_audio_enabled_ = enabled;
-}
-
-bool DefaultAccessibilityDelegate::IsMonoAudioEnabled() const {
- return mono_audio_enabled_;
-}
-
-void DefaultAccessibilityDelegate::SetCaretHighlightEnabled(bool enabled) {
- caret_highlight_enabled_ = enabled;
-}
-
-bool DefaultAccessibilityDelegate::IsCaretHighlightEnabled() const {
- return caret_highlight_enabled_;
-}
-
-void DefaultAccessibilityDelegate::SetCursorHighlightEnabled(bool enabled) {
- cursor_highlight_enabled_ = enabled;
-}
-
-bool DefaultAccessibilityDelegate::IsCursorHighlightEnabled() const {
- return cursor_highlight_enabled_;
-}
-
-void DefaultAccessibilityDelegate::SetFocusHighlightEnabled(bool enabled) {
- focus_highligh_enabled_ = enabled;
-}
-
-bool DefaultAccessibilityDelegate::IsFocusHighlightEnabled() const {
- return focus_highligh_enabled_;
-}
-
-void DefaultAccessibilityDelegate::SetSelectToSpeakEnabled(bool enabled) {
- select_to_speak_enabled_ = enabled;
-}
-
-bool DefaultAccessibilityDelegate::IsSelectToSpeakEnabled() const {
- return select_to_speak_enabled_;
-}
-
-void DefaultAccessibilityDelegate::SetSwitchAccessEnabled(bool enabled) {
- switch_access_enabled_ = enabled;
-}
-
-bool DefaultAccessibilityDelegate::IsSwitchAccessEnabled() const {
- return switch_access_enabled_;
-}
-
-bool DefaultAccessibilityDelegate::ShouldShowAccessibilityMenu() const {
- return spoken_feedback_enabled_ || high_contrast_enabled_ ||
- screen_magnifier_enabled_ || large_cursor_enabled_ ||
- autoclick_enabled_ || virtual_keyboard_enabled_ || mono_audio_enabled_;
-}
-
-bool DefaultAccessibilityDelegate::IsBrailleDisplayConnected() const {
- return false;
-}
-
-void DefaultAccessibilityDelegate::SilenceSpokenFeedback() const {}
-
-void DefaultAccessibilityDelegate::ClearFocusHighlight() const {}
-
-void DefaultAccessibilityDelegate::ToggleSpokenFeedback(
- AccessibilityNotificationVisibility notify) {
- spoken_feedback_enabled_ = !spoken_feedback_enabled_;
-}
-
-void DefaultAccessibilityDelegate::SaveScreenMagnifierScale(double scale) {}
-
-double DefaultAccessibilityDelegate::GetSavedScreenMagnifierScale() {
- return std::numeric_limits<double>::min();
-}
-
-void DefaultAccessibilityDelegate::TriggerAccessibilityAlert(
- AccessibilityAlert alert) {
- accessibility_alert_ = alert;
-}
-
-AccessibilityAlert DefaultAccessibilityDelegate::GetLastAccessibilityAlert() {
- return accessibility_alert_;
-}
-
-bool DefaultAccessibilityDelegate::ShouldToggleSpokenFeedbackViaTouch() {
- return false;
-}
-
-void DefaultAccessibilityDelegate::PlaySpokenFeedbackToggleCountdown(
- int tick_count) {}
-
-void DefaultAccessibilityDelegate::PlayEarcon(int sound_key) {}
-
-base::TimeDelta DefaultAccessibilityDelegate::PlayShutdownSound() const {
- return base::TimeDelta();
-}
-
-void DefaultAccessibilityDelegate::HandleAccessibilityGesture(
- ui::AXGesture gesture) {}
-
-} // namespace ash
« no previous file with comments | « ash/common/default_accessibility_delegate.h ('k') | ash/common/devtools/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698