| Index: ash/system/tray/system_tray.cc
|
| diff --git a/ash/system/tray/system_tray.cc b/ash/system/tray/system_tray.cc
|
| index 867197ce81d21f4f1e36652182bdd112db484f2e..6125ed63cb676eae7fd5b84da5ca5b1109db7109 100644
|
| --- a/ash/system/tray/system_tray.cc
|
| +++ b/ash/system/tray/system_tray.cc
|
| @@ -16,10 +16,13 @@
|
| #include "base/logging.h"
|
| #include "base/timer.h"
|
| #include "base/utf_string_conversions.h"
|
| +#include "grit/ash_strings.h"
|
| #include "third_party/skia/include/core/SkCanvas.h"
|
| #include "third_party/skia/include/core/SkColor.h"
|
| #include "third_party/skia/include/core/SkPaint.h"
|
| #include "third_party/skia/include/core/SkPath.h"
|
| +#include "ui/base/accessibility/accessible_view_state.h"
|
| +#include "ui/base/l10n/l10n_util.h"
|
| #include "ui/gfx/canvas.h"
|
| #include "ui/gfx/skia_util.h"
|
| #include "ui/views/border.h"
|
| @@ -288,6 +291,13 @@ class SystemTrayBubble : public views::BubbleDelegateView {
|
| }
|
| }
|
|
|
| + // Overridden from views::View.
|
| + virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE {
|
| + state->role = ui::AccessibilityTypes::ROLE_WINDOW;
|
| + state->name = l10n_util::GetStringUTF16(
|
| + IDS_ASH_STATUS_TRAY_ACCESSIBLE_NAME);
|
| + }
|
| +
|
| virtual bool CanActivate() const OVERRIDE {
|
| return can_activate_;
|
| }
|
|
|