| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef ASH_TOUCH_EXPLORATION_MANAGER_CHROMEOS_H_ | 5 #ifndef ASH_TOUCH_EXPLORATION_MANAGER_CHROMEOS_H_ |
| 6 #define ASH_TOUCH_EXPLORATION_MANAGER_CHROMEOS_H_ | 6 #define ASH_TOUCH_EXPLORATION_MANAGER_CHROMEOS_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 void SetTouchAccessibilityAnchorPoint(const gfx::Point& anchor_point); | 69 void SetTouchAccessibilityAnchorPoint(const gfx::Point& anchor_point); |
| 70 | 70 |
| 71 private: | 71 private: |
| 72 void UpdateTouchExplorationState(); | 72 void UpdateTouchExplorationState(); |
| 73 bool VolumeAdjustSoundEnabled(); | 73 bool VolumeAdjustSoundEnabled(); |
| 74 | 74 |
| 75 std::unique_ptr<ui::TouchExplorationController> touch_exploration_controller_; | 75 std::unique_ptr<ui::TouchExplorationController> touch_exploration_controller_; |
| 76 std::unique_ptr<ui::TouchAccessibilityEnabler> touch_accessibility_enabler_; | 76 std::unique_ptr<ui::TouchAccessibilityEnabler> touch_accessibility_enabler_; |
| 77 RootWindowController* root_window_controller_; | 77 RootWindowController* root_window_controller_; |
| 78 chromeos::CrasAudioHandler* audio_handler_; | 78 chromeos::CrasAudioHandler* audio_handler_; |
| 79 const bool enable_chromevox_arc_support_; |
| 79 | 80 |
| 80 DISALLOW_COPY_AND_ASSIGN(AshTouchExplorationManager); | 81 DISALLOW_COPY_AND_ASSIGN(AshTouchExplorationManager); |
| 81 }; | 82 }; |
| 82 | 83 |
| 83 } // namespace ash | 84 } // namespace ash |
| 84 | 85 |
| 85 #endif // ASH_TOUCH_EXPLORATION_MANAGER_CHROMEOS_H_ | 86 #endif // ASH_TOUCH_EXPLORATION_MANAGER_CHROMEOS_H_ |
| OLD | NEW |