| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_BASE_H_ | 5 #ifndef UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_BASE_H_ |
| 6 #define UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_BASE_H_ | 6 #define UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_BASE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 : public NativeViewAccessibility, | 29 : public NativeViewAccessibility, |
| 30 public ui::AXPlatformNodeDelegate, | 30 public ui::AXPlatformNodeDelegate, |
| 31 public WidgetObserver { | 31 public WidgetObserver { |
| 32 public: | 32 public: |
| 33 ~NativeViewAccessibilityBase() override; | 33 ~NativeViewAccessibilityBase() override; |
| 34 | 34 |
| 35 // NativeViewAccessibility: | 35 // NativeViewAccessibility: |
| 36 gfx::NativeViewAccessible GetNativeObject() override; | 36 gfx::NativeViewAccessible GetNativeObject() override; |
| 37 void NotifyAccessibilityEvent(ui::AXEvent event_type) override; | 37 void NotifyAccessibilityEvent(ui::AXEvent event_type) override; |
| 38 | 38 |
| 39 // Focuses or unfocuses a View. | |
| 40 bool SetFocused(bool focused); | |
| 41 | |
| 42 // ui::AXPlatformNodeDelegate | 39 // ui::AXPlatformNodeDelegate |
| 43 const ui::AXNodeData& GetData() const override; | 40 const ui::AXNodeData& GetData() const override; |
| 44 int GetChildCount() override; | 41 int GetChildCount() override; |
| 45 gfx::NativeViewAccessible ChildAtIndex(int index) override; | 42 gfx::NativeViewAccessible ChildAtIndex(int index) override; |
| 46 gfx::NativeWindow GetTopLevelWidget() override; | 43 gfx::NativeWindow GetTopLevelWidget() override; |
| 47 gfx::NativeViewAccessible GetParent() override; | 44 gfx::NativeViewAccessible GetParent() override; |
| 48 gfx::Vector2d GetGlobalCoordinateOffset() override; | 45 gfx::Vector2d GetGlobalCoordinateOffset() override; |
| 49 gfx::NativeViewAccessible HitTestSync(int x, int y) override; | 46 gfx::NativeViewAccessible HitTestSync(int x, int y) override; |
| 50 gfx::NativeViewAccessible GetFocus() override; | 47 gfx::NativeViewAccessible GetFocus() override; |
| 51 gfx::AcceleratedWidget GetTargetForNativeAccessibilityEvent() override; | 48 gfx::AcceleratedWidget GetTargetForNativeAccessibilityEvent() override; |
| 52 bool AccessibilityPerformAction(const ui::AXActionData& data) override; | 49 bool AccessibilityPerformAction(const ui::AXActionData& data) override; |
| 53 void DoDefaultAction() override; | |
| 54 | 50 |
| 55 // WidgetObserver | 51 // WidgetObserver |
| 56 void OnWidgetDestroying(Widget* widget) override; | 52 void OnWidgetDestroying(Widget* widget) override; |
| 57 | 53 |
| 58 Widget* parent_widget() const { return parent_widget_; } | 54 Widget* parent_widget() const { return parent_widget_; } |
| 59 void SetParentWidget(Widget* parent_widget); | 55 void SetParentWidget(Widget* parent_widget); |
| 60 | 56 |
| 61 protected: | 57 protected: |
| 62 explicit NativeViewAccessibilityBase(View* view); | 58 explicit NativeViewAccessibilityBase(View* view); |
| 63 | 59 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 77 ui::AXPlatformNode* ax_node_; | 73 ui::AXPlatformNode* ax_node_; |
| 78 | 74 |
| 79 mutable ui::AXNodeData data_; | 75 mutable ui::AXNodeData data_; |
| 80 | 76 |
| 81 DISALLOW_COPY_AND_ASSIGN(NativeViewAccessibilityBase); | 77 DISALLOW_COPY_AND_ASSIGN(NativeViewAccessibilityBase); |
| 82 }; | 78 }; |
| 83 | 79 |
| 84 } // namespace views | 80 } // namespace views |
| 85 | 81 |
| 86 #endif // UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_BASE_H_ | 82 #endif // UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_BASE_H_ |
| OLD | NEW |