| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" | 5 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" |
| 6 | 6 |
| 7 #include "ash/audio/sounds.h" | 7 #include "ash/audio/sounds.h" |
| 8 #include "ash/autoclick/autoclick_controller.h" | 8 #include "ash/autoclick/autoclick_controller.h" |
| 9 #include "ash/high_contrast/high_contrast_controller.h" | 9 #include "ash/high_contrast/high_contrast_controller.h" |
| 10 #include "ash/metrics/user_metrics_recorder.h" | 10 #include "ash/metrics/user_metrics_recorder.h" |
| 11 #include "ash/session_state_delegate.h" | 11 #include "ash/session_state_delegate.h" |
| 12 #include "ash/shell.h" | 12 #include "ash/shell.h" |
| 13 #include "ash/sticky_keys/sticky_keys_controller.h" | 13 #include "ash/sticky_keys/sticky_keys_controller.h" |
| 14 #include "ash/system/tray/system_tray_notifier.h" | 14 #include "ash/system/tray/system_tray_notifier.h" |
| 15 #include "ash/wm/event_rewriter_event_filter.h" |
| 15 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/memory/singleton.h" | 17 #include "base/memory/singleton.h" |
| 17 #include "base/metrics/histogram.h" | 18 #include "base/metrics/histogram.h" |
| 18 #include "base/path_service.h" | 19 #include "base/path_service.h" |
| 19 #include "base/prefs/pref_member.h" | 20 #include "base/prefs/pref_member.h" |
| 20 #include "base/prefs/pref_service.h" | 21 #include "base/prefs/pref_service.h" |
| 21 #include "base/time/time.h" | 22 #include "base/time/time.h" |
| 22 #include "base/values.h" | 23 #include "base/values.h" |
| 23 #include "chrome/browser/accessibility/accessibility_extension_api.h" | 24 #include "chrome/browser/accessibility/accessibility_extension_api.h" |
| 24 #include "chrome/browser/browser_process.h" | 25 #include "chrome/browser/browser_process.h" |
| (...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 962 | 963 |
| 963 void AccessibilityManager::PostUnloadChromeVox(Profile* profile) { | 964 void AccessibilityManager::PostUnloadChromeVox(Profile* profile) { |
| 964 // Do any teardown work needed immediately after ChromeVox actually unloads. | 965 // Do any teardown work needed immediately after ChromeVox actually unloads. |
| 965 if (system_sounds_enabled_) { | 966 if (system_sounds_enabled_) { |
| 966 ash::PlaySystemSound(SOUND_SPOKEN_FEEDBACK_DISABLED, | 967 ash::PlaySystemSound(SOUND_SPOKEN_FEEDBACK_DISABLED, |
| 967 false /* honor_spoken_feedback */); | 968 false /* honor_spoken_feedback */); |
| 968 } | 969 } |
| 969 } | 970 } |
| 970 | 971 |
| 971 } // namespace chromeos | 972 } // namespace chromeos |
| OLD | NEW |