| 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_system_caret_win.h" | 5 #include "ui/accessibility/platform/ax_system_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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 gfx::AcceleratedWidget | 101 gfx::AcceleratedWidget |
| 102 AXSystemCaretWin::GetTargetForNativeAccessibilityEvent() { | 102 AXSystemCaretWin::GetTargetForNativeAccessibilityEvent() { |
| 103 return event_target_; | 103 return event_target_; |
| 104 } | 104 } |
| 105 | 105 |
| 106 bool AXSystemCaretWin::AccessibilityPerformAction( | 106 bool AXSystemCaretWin::AccessibilityPerformAction( |
| 107 const ui::AXActionData& data) { | 107 const ui::AXActionData& data) { |
| 108 return false; | 108 return false; |
| 109 } | 109 } |
| 110 | 110 |
| 111 AXPlatformNode* AXSystemCaretWin::GetFromNodeID(int32_t id) { |
| 112 return nullptr; |
| 113 } |
| 114 |
| 111 bool AXSystemCaretWin::ShouldIgnoreHoveredStateForTesting() { | 115 bool AXSystemCaretWin::ShouldIgnoreHoveredStateForTesting() { |
| 112 return false; | 116 return false; |
| 113 } | 117 } |
| 114 | 118 |
| 115 } // namespace ui | 119 } // namespace ui |
| OLD | NEW |