| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 #include "ui/accessibility/platform/ax_fake_caret_win.h" | 5 #include "ui/accessibility/platform/ax_fake_caret_win.h" |
| 6 | 6 |
| 7 #include <windows.h> | 7 #include <windows.h> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "ui/accessibility/ax_enums.h" | 10 #include "ui/accessibility/ax_enums.h" |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 } | 97 } |
| 98 | 98 |
| 99 gfx::AcceleratedWidget AXFakeCaretWin::GetTargetForNativeAccessibilityEvent() { | 99 gfx::AcceleratedWidget AXFakeCaretWin::GetTargetForNativeAccessibilityEvent() { |
| 100 return event_target_; | 100 return event_target_; |
| 101 } | 101 } |
| 102 | 102 |
| 103 bool AXFakeCaretWin::AccessibilityPerformAction(const ui::AXActionData& data) { | 103 bool AXFakeCaretWin::AccessibilityPerformAction(const ui::AXActionData& data) { |
| 104 return false; | 104 return false; |
| 105 } | 105 } |
| 106 | 106 |
| 107 bool AXFakeCaretWin::ShouldIgnoreHoveredStateForTesting() { |
| 108 return true; |
| 109 } |
| 110 |
| 107 } // namespace ui | 111 } // namespace ui |
| OLD | NEW |