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 ATHENA_INPUT_PUBLIC_ACCELERATOR_MANAGER_H_ | 5 #ifndef ATHENA_INPUT_PUBLIC_ACCELERATOR_MANAGER_H_ |
6 #define ATHENA_INPUT_PUBLIC_ACCELERATOR_MANAGER_H_ | 6 #define ATHENA_INPUT_PUBLIC_ACCELERATOR_MANAGER_H_ |
7 | 7 |
8 #include "athena/common/athena_export.h" | 8 #include "athena/athena_export.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "ui/events/keycodes/keyboard_codes.h" | 10 #include "ui/events/keycodes/keyboard_codes.h" |
11 | 11 |
12 namespace ui { | 12 namespace ui { |
13 class Accelerator; | 13 class Accelerator; |
14 } | 14 } |
15 | 15 |
16 namespace views { | 16 namespace views { |
17 class FocusManager; | 17 class FocusManager; |
18 } | 18 } |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 size_t num_accelerators, | 82 size_t num_accelerators, |
83 AcceleratorHandler* handler) = 0; | 83 AcceleratorHandler* handler) = 0; |
84 | 84 |
85 // Enables/Disables accelerators that has a AF_DEBUG flag. | 85 // Enables/Disables accelerators that has a AF_DEBUG flag. |
86 virtual void SetDebugAcceleratorsEnabled(bool enabled) = 0; | 86 virtual void SetDebugAcceleratorsEnabled(bool enabled) = 0; |
87 }; | 87 }; |
88 | 88 |
89 } // namespace athena | 89 } // namespace athena |
90 | 90 |
91 #endif // ATHENA_INPUT_PUBLIC_ACCELERATOR_MANAGER_H_ | 91 #endif // ATHENA_INPUT_PUBLIC_ACCELERATOR_MANAGER_H_ |
OLD | NEW |