| Index: ui/views/controls/tabbed_pane/tabbed_pane.cc
|
| diff --git a/ui/views/controls/tabbed_pane/tabbed_pane.cc b/ui/views/controls/tabbed_pane/tabbed_pane.cc
|
| index 02da2f9488577087015482c253d325efb35ce02d..e28a995fbf8921dc9b537ffc2496262772c25a45 100644
|
| --- a/ui/views/controls/tabbed_pane/tabbed_pane.cc
|
| +++ b/ui/views/controls/tabbed_pane/tabbed_pane.cc
|
| @@ -8,7 +8,7 @@
|
| #include "base/macros.h"
|
| #include "third_party/skia/include/core/SkPaint.h"
|
| #include "third_party/skia/include/core/SkPath.h"
|
| -#include "ui/accessibility/ax_view_state.h"
|
| +#include "ui/accessibility/ax_node_data.h"
|
| #include "ui/base/default_style.h"
|
| #include "ui/base/material_design/material_design_controller.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
| @@ -623,8 +623,8 @@ View* TabbedPane::GetSelectedTabContentView() {
|
| return GetSelectedTab() ? GetSelectedTab()->contents() : nullptr;
|
| }
|
|
|
| -void TabbedPane::GetAccessibleState(ui::AXViewState* state) {
|
| - state->role = ui::AX_ROLE_TAB_LIST;
|
| +void TabbedPane::GetAccessibleNodeData(ui::AXNodeData* node_data) {
|
| + node_data->role = ui::AX_ROLE_TAB_LIST;
|
| }
|
|
|
| } // namespace views
|
|
|