| Index: ui/views/focus/focus_manager.cc
|
| diff --git a/ui/views/focus/focus_manager.cc b/ui/views/focus/focus_manager.cc
|
| index c84c3152734d2de2994673aee76b89365884d19d..c15dab45d20c3a8d687a0138e22de92c14b4835b 100644
|
| --- a/ui/views/focus/focus_manager.cc
|
| +++ b/ui/views/focus/focus_manager.cc
|
| @@ -489,6 +489,12 @@ bool FocusManager::ProcessAccelerator(const ui::Accelerator& accelerator) {
|
| return false;
|
| }
|
|
|
| +bool FocusManager::IsAcceleratorDeprecated(
|
| + const ui::Accelerator& accelerator) const {
|
| + return delegate_.get() &&
|
| + delegate_.get()->IsAcceleratorDeprecated(accelerator);
|
| +}
|
| +
|
| ui::AcceleratorTarget* FocusManager::GetCurrentTargetForAccelerator(
|
| const ui::Accelerator& accelerator) const {
|
| ui::AcceleratorTarget* target =
|
|
|