| Index: ash/common/system/tray/tray_item_more.cc
|
| diff --git a/ash/common/system/tray/tray_item_more.cc b/ash/common/system/tray/tray_item_more.cc
|
| index d1bf2fff9027ba79e5a93bc5341fc0b0e199cc9c..4635f622f6fd2a2d4c1c451f92eca30046a28790 100644
|
| --- a/ash/common/system/tray/tray_item_more.cc
|
| +++ b/ash/common/system/tray/tray_item_more.cc
|
| @@ -13,7 +13,7 @@
|
| #include "ash/resources/vector_icons/vector_icons.h"
|
| #include "base/memory/ptr_util.h"
|
| #include "grit/ash_resources.h"
|
| -#include "ui/accessibility/ax_view_state.h"
|
| +#include "ui/accessibility/ax_node_data.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
| #include "ui/gfx/image/image.h"
|
| #include "ui/gfx/paint_vector_icon.h"
|
| @@ -99,10 +99,10 @@ bool TrayItemMore::PerformAction(const ui::Event& event) {
|
| return true;
|
| }
|
|
|
| -void TrayItemMore::GetAccessibleState(ui::AXViewState* state) {
|
| - ActionableView::GetAccessibleState(state);
|
| +void TrayItemMore::GetAccessibleNodeData(ui::AXNodeData* node_data) {
|
| + ActionableView::GetAccessibleNodeData(node_data);
|
| if (!accessible_name_.empty())
|
| - state->name = accessible_name_;
|
| + node_data->SetName(accessible_name_);
|
| }
|
|
|
| void TrayItemMore::OnNativeThemeChanged(const ui::NativeTheme* theme) {
|
|
|