| Index: chrome/browser/ui/aura/accessibility/ax_root_obj_wrapper.cc
|
| diff --git a/chrome/browser/ui/aura/accessibility/ax_root_obj_wrapper.cc b/chrome/browser/ui/aura/accessibility/ax_root_obj_wrapper.cc
|
| index 5f2aa9fc302fe98f0cf62fc6f7d363220baccd24..a512660bbf4dd6d65ad3d5c1fb051d2289f6fa4e 100644
|
| --- a/chrome/browser/ui/aura/accessibility/ax_root_obj_wrapper.cc
|
| +++ b/chrome/browser/ui/aura/accessibility/ax_root_obj_wrapper.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chrome/browser/ui/aura/accessibility/ax_root_obj_wrapper.h"
|
|
|
| #include "base/strings/utf_string_conversions.h"
|
| +#include "chrome/common/channel_info.h"
|
| #include "ui/accessibility/ax_node_data.h"
|
| #include "ui/accessibility/ax_node_data.h"
|
| #include "ui/aura/window.h"
|
| @@ -53,8 +54,9 @@ void AXRootObjWrapper::GetChildren(
|
| void AXRootObjWrapper::Serialize(ui::AXNodeData* out_node_data) {
|
| out_node_data->id = id_;
|
| out_node_data->role = ui::AX_ROLE_DESKTOP;
|
| - // TODO(dtseng): Apply a richer set of states.
|
| out_node_data->state = 0;
|
| + out_node_data->AddStringAttribute(ui::AX_ATTR_CHROME_CHANNEL,
|
| + chrome::GetChannelString());
|
| }
|
|
|
| int32_t AXRootObjWrapper::GetID() {
|
|
|