| 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_H_ | 5 #ifndef UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_H_ |
| 6 #define UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_H_ | 6 #define UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" |
| 9 #include "build/build_config.h" |
| 8 #include "ui/accessibility/ax_node_data.h" | 10 #include "ui/accessibility/ax_node_data.h" |
| 9 #include "ui/accessibility/platform/ax_platform_node.h" | 11 #include "ui/accessibility/platform/ax_platform_node.h" |
| 10 #include "ui/accessibility/platform/ax_platform_node_delegate.h" | 12 #include "ui/accessibility/platform/ax_platform_node_delegate.h" |
| 11 #include "ui/gfx/native_widget_types.h" | 13 #include "ui/gfx/native_widget_types.h" |
| 12 #include "ui/views/views_export.h" | 14 #include "ui/views/views_export.h" |
| 13 #include "ui/views/widget/widget_observer.h" | 15 #include "ui/views/widget/widget_observer.h" |
| 14 | 16 |
| 15 // Set PLATFORM_HAS_NATIVE_VIEW_ACCESSIBILITY_IMPL if this platform has a | 17 // Set PLATFORM_HAS_NATIVE_VIEW_ACCESSIBILITY_IMPL if this platform has a |
| 16 // specific implementation of NativeViewAccessibility::Create(). | 18 // specific implementation of NativeViewAccessibility::Create(). |
| 17 #undef PLATFORM_HAS_NATIVE_VIEW_ACCESSIBILITY_IMPL | 19 #undef PLATFORM_HAS_NATIVE_VIEW_ACCESSIBILITY_IMPL |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 ui::AXPlatformNode* ax_node_; | 83 ui::AXPlatformNode* ax_node_; |
| 82 | 84 |
| 83 ui::AXNodeData data_; | 85 ui::AXNodeData data_; |
| 84 | 86 |
| 85 DISALLOW_COPY_AND_ASSIGN(NativeViewAccessibility); | 87 DISALLOW_COPY_AND_ASSIGN(NativeViewAccessibility); |
| 86 }; | 88 }; |
| 87 | 89 |
| 88 } // namespace views | 90 } // namespace views |
| 89 | 91 |
| 90 #endif // UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_H_ | 92 #endif // UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_H_ |
| OLD | NEW |