Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: ui/views/accessibility/native_view_accessibility_base.h

Issue 2937083002: Revert of Forward BrowserAccessibility get_accState to AXPlatformNode. (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 29 matching lines...) Expand all
40 const ui::AXNodeData& GetData() const override; 40 const ui::AXNodeData& GetData() const override;
41 int GetChildCount() override; 41 int GetChildCount() override;
42 gfx::NativeViewAccessible ChildAtIndex(int index) override; 42 gfx::NativeViewAccessible ChildAtIndex(int index) override;
43 gfx::NativeWindow GetTopLevelWidget() override; 43 gfx::NativeWindow GetTopLevelWidget() override;
44 gfx::NativeViewAccessible GetParent() override; 44 gfx::NativeViewAccessible GetParent() override;
45 gfx::Rect GetScreenBoundsRect() const override; 45 gfx::Rect GetScreenBoundsRect() const override;
46 gfx::NativeViewAccessible HitTestSync(int x, int y) override; 46 gfx::NativeViewAccessible HitTestSync(int x, int y) override;
47 gfx::NativeViewAccessible GetFocus() override; 47 gfx::NativeViewAccessible GetFocus() override;
48 gfx::AcceleratedWidget GetTargetForNativeAccessibilityEvent() override; 48 gfx::AcceleratedWidget GetTargetForNativeAccessibilityEvent() override;
49 bool AccessibilityPerformAction(const ui::AXActionData& data) override; 49 bool AccessibilityPerformAction(const ui::AXActionData& data) override;
50 bool ShouldIgnoreHoveredStateForTesting() override;
51 50
52 // WidgetObserver 51 // WidgetObserver
53 void OnWidgetDestroying(Widget* widget) override; 52 void OnWidgetDestroying(Widget* widget) override;
54 53
55 Widget* parent_widget() const { return parent_widget_; } 54 Widget* parent_widget() const { return parent_widget_; }
56 void SetParentWidget(Widget* parent_widget); 55 void SetParentWidget(Widget* parent_widget);
57 56
58 protected: 57 protected:
59 explicit NativeViewAccessibilityBase(View* view); 58 explicit NativeViewAccessibilityBase(View* view);
60 59
(...skipping 16 matching lines...) Expand all
77 ui::AXPlatformNode* ax_node_; 76 ui::AXPlatformNode* ax_node_;
78 77
79 mutable ui::AXNodeData data_; 78 mutable ui::AXNodeData data_;
80 79
81 DISALLOW_COPY_AND_ASSIGN(NativeViewAccessibilityBase); 80 DISALLOW_COPY_AND_ASSIGN(NativeViewAccessibilityBase);
82 }; 81 };
83 82
84 } // namespace views 83 } // namespace views
85 84
86 #endif // UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_BASE_H_ 85 #endif // UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_BASE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698