| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 UI_VIEWS_FOCUS_FOCUS_MANAGER_H_ | 5 #ifndef UI_VIEWS_FOCUS_FOCUS_MANAGER_H_ |
| 6 #define UI_VIEWS_FOCUS_FOCUS_MANAGER_H_ | 6 #define UI_VIEWS_FOCUS_FOCUS_MANAGER_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 // | 70 // |
| 71 // hwnd_view_container_->GetWidget()->SetFocusTraversableParent( | 71 // hwnd_view_container_->GetWidget()->SetFocusTraversableParent( |
| 72 // native_control); | 72 // native_control); |
| 73 // | 73 // |
| 74 // Note that FocusTraversable views do not have to be RootViews: | 74 // Note that FocusTraversable views do not have to be RootViews: |
| 75 // AccessibleToolbarView is FocusTraversable. | 75 // AccessibleToolbarView is FocusTraversable. |
| 76 | 76 |
| 77 namespace ui { | 77 namespace ui { |
| 78 class AcceleratorManager; | 78 class AcceleratorManager; |
| 79 class AcceleratorTarget; | 79 class AcceleratorTarget; |
| 80 class EventHandler; | |
| 81 class KeyEvent; | 80 class KeyEvent; |
| 82 } | 81 } |
| 83 | 82 |
| 84 namespace views { | 83 namespace views { |
| 85 | 84 |
| 86 class FocusManagerDelegate; | 85 class FocusManagerDelegate; |
| 87 class FocusSearch; | 86 class FocusSearch; |
| 88 class View; | 87 class View; |
| 89 class Widget; | 88 class Widget; |
| 90 | 89 |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 // access is enabled. | 382 // access is enabled. |
| 384 // Default value is false. | 383 // Default value is false. |
| 385 bool keyboard_accessible_; | 384 bool keyboard_accessible_; |
| 386 | 385 |
| 387 DISALLOW_COPY_AND_ASSIGN(FocusManager); | 386 DISALLOW_COPY_AND_ASSIGN(FocusManager); |
| 388 }; | 387 }; |
| 389 | 388 |
| 390 } // namespace views | 389 } // namespace views |
| 391 | 390 |
| 392 #endif // UI_VIEWS_FOCUS_FOCUS_MANAGER_H_ | 391 #endif // UI_VIEWS_FOCUS_FOCUS_MANAGER_H_ |
| OLD | NEW |