| 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 "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/system/tray_accessibility.h" | 9 #include "ash/system/tray_accessibility.h" |
| 10 #include "base/macros.h" |
| 10 #include "ui/chromeos/touch_exploration_controller.h" | 11 #include "ui/chromeos/touch_exploration_controller.h" |
| 11 | 12 |
| 12 namespace chromeos { | 13 namespace chromeos { |
| 13 class CrasAudioHandler; | 14 class CrasAudioHandler; |
| 14 } | 15 } |
| 15 | 16 |
| 16 namespace ash { | 17 namespace ash { |
| 17 class RootWindowController; | 18 class RootWindowController; |
| 18 | 19 |
| 19 // Responsible for initializing TouchExplorationController when spoken | 20 // Responsible for initializing TouchExplorationController when spoken |
| (...skipping 27 matching lines...) Expand all Loading... |
| 47 scoped_ptr<ui::TouchExplorationController> touch_exploration_controller_; | 48 scoped_ptr<ui::TouchExplorationController> touch_exploration_controller_; |
| 48 RootWindowController* root_window_controller_; | 49 RootWindowController* root_window_controller_; |
| 49 chromeos::CrasAudioHandler* audio_handler_; | 50 chromeos::CrasAudioHandler* audio_handler_; |
| 50 | 51 |
| 51 DISALLOW_COPY_AND_ASSIGN(AshTouchExplorationManager); | 52 DISALLOW_COPY_AND_ASSIGN(AshTouchExplorationManager); |
| 52 }; | 53 }; |
| 53 | 54 |
| 54 } // namespace ash | 55 } // namespace ash |
| 55 | 56 |
| 56 #endif // ASH_TOUCH_EXPLORATION_MANAGER_CHROMEOS_H_ | 57 #endif // ASH_TOUCH_EXPLORATION_MANAGER_CHROMEOS_H_ |
| OLD | NEW |