1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/views/accessibility/native_view_accessibility_win.h"
8 #include <UIAutomationClient.h>
13 #include "base/memory/singleton.h"
14 #include "base/strings/utf_string_conversions.h"
15 #include "base/win/scoped_comptr.h"
16 #include "base/win/windows_version.h"
17 #include "third_party/iaccessible2/ia2_api_all.h"
18 #include "ui/accessibility/ax_enums.h"
19 #include "ui/accessibility/ax_text_utils.h"
20 #include "ui/accessibility/ax_view_state.h"
21 #include "ui/base/win/accessibility_ids_win.h"
22 #include "ui/base/win/accessibility_misc_utils.h"
23 #include "ui/base/win/atl_module.h"
24 #include "ui/views/controls/button/custom_button.h"
25 #include "ui/views/focus/focus_manager.h"
26 #include "ui/views/focus/view_storage.h"
27 #include "ui/views/widget/widget.h"
28 #include "ui/views/win/hwnd_util.h"
33 class AccessibleWebViewRegistry
{
35 static AccessibleWebViewRegistry
* GetInstance();
37 void RegisterWebView(View
* web_view
);
39 void UnregisterWebView(View
* web_view
);
41 // Given the view that received the request for the accessible
42 // id in |top_view|, and the child id requested, return the native
43 // accessible object with that child id from one of the WebViews in
44 // |top_view|'s view hierarchy, if any.
45 IAccessible
* GetAccessibleFromWebView(View
* top_view
, long child_id
);
47 // The system uses IAccessible APIs for many purposes, but only
48 // assistive technology like screen readers uses IAccessible2.
49 // Call this method to note that the IAccessible2 interface was queried and
50 // that WebViews should be proactively notified that this interface will be
51 // used. If this is enabled for the first time, this will explicitly call
52 // QueryService with an argument of IAccessible2 on all WebViews, otherwise
53 // it will just do it from now on.
54 void EnableIAccessible2Support();
57 friend struct DefaultSingletonTraits
<AccessibleWebViewRegistry
>;
58 AccessibleWebViewRegistry();
59 ~AccessibleWebViewRegistry() {}
61 IAccessible
* AccessibleObjectFromChildId(View
* web_view
, long child_id
);
63 void QueryIAccessible2Interface(View
* web_view
);
65 // Set of all web views. We check whether each one is contained in a
66 // top view dynamically rather than keeping track of a map.
67 std::set
<View
*> web_views_
;
69 // The most recent top view used in a call to GetAccessibleFromWebView.
72 // The most recent web view where an accessible object was found,
73 // corresponding to |last_top_view_|.
76 // If IAccessible2 support is enabled, we query the IAccessible2 interface
77 // of WebViews proactively when they're registered, so that they are
78 // aware that they need to support this interface.
79 bool iaccessible2_support_enabled_
;
81 DISALLOW_COPY_AND_ASSIGN(AccessibleWebViewRegistry
);
84 AccessibleWebViewRegistry::AccessibleWebViewRegistry()
85 : last_top_view_(NULL
),
87 iaccessible2_support_enabled_(false) {
90 AccessibleWebViewRegistry
* AccessibleWebViewRegistry::GetInstance() {
91 return Singleton
<AccessibleWebViewRegistry
>::get();
94 void AccessibleWebViewRegistry::RegisterWebView(View
* web_view
) {
95 DCHECK(web_views_
.find(web_view
) == web_views_
.end());
96 web_views_
.insert(web_view
);
98 if (iaccessible2_support_enabled_
)
99 QueryIAccessible2Interface(web_view
);
102 void AccessibleWebViewRegistry::UnregisterWebView(View
* web_view
) {
103 DCHECK(web_views_
.find(web_view
) != web_views_
.end());
104 web_views_
.erase(web_view
);
105 if (last_web_view_
== web_view
) {
106 last_top_view_
= NULL
;
107 last_web_view_
= NULL
;
111 IAccessible
* AccessibleWebViewRegistry::GetAccessibleFromWebView(
112 View
* top_view
, long child_id
) {
113 // This function gets called frequently, so try to avoid searching all
114 // of the web views if the notification is on the same web view that
115 // sent the last one.
116 if (last_top_view_
== top_view
) {
117 IAccessible
* accessible
=
118 AccessibleObjectFromChildId(last_web_view_
, child_id
);
123 // Search all web views. For each one, first ensure it's a descendant
124 // of this view where the event was posted - and if so, see if it owns
125 // an accessible object with that child id. If so, save the view to speed
126 // up the next notification.
127 for (std::set
<View
*>::iterator iter
= web_views_
.begin();
128 iter
!= web_views_
.end(); ++iter
) {
129 View
* web_view
= *iter
;
130 if (top_view
== web_view
|| !top_view
->Contains(web_view
))
132 IAccessible
* accessible
= AccessibleObjectFromChildId(web_view
, child_id
);
134 last_top_view_
= top_view
;
135 last_web_view_
= web_view
;
143 void AccessibleWebViewRegistry::EnableIAccessible2Support() {
144 if (iaccessible2_support_enabled_
)
146 iaccessible2_support_enabled_
= true;
147 for (std::set
<View
*>::iterator iter
= web_views_
.begin();
148 iter
!= web_views_
.end(); ++iter
) {
149 QueryIAccessible2Interface(*iter
);
153 IAccessible
* AccessibleWebViewRegistry::AccessibleObjectFromChildId(
156 IAccessible
* web_view_accessible
= web_view
->GetNativeViewAccessible();
157 if (web_view_accessible
== NULL
)
161 var_child
.vt
= VT_I4
;
162 var_child
.lVal
= child_id
;
163 IAccessible
* result
= NULL
;
164 if (S_OK
== web_view_accessible
->get_accChild(
165 var_child
, reinterpret_cast<IDispatch
**>(&result
))) {
172 void AccessibleWebViewRegistry::QueryIAccessible2Interface(View
* web_view
) {
173 IAccessible
* web_view_accessible
= web_view
->GetNativeViewAccessible();
174 if (!web_view_accessible
)
177 base::win::ScopedComPtr
<IServiceProvider
> service_provider
;
178 if (S_OK
!= web_view_accessible
->QueryInterface(service_provider
.Receive()))
180 base::win::ScopedComPtr
<IAccessible2
> iaccessible2
;
181 service_provider
->QueryService(
182 IID_IAccessible
, IID_IAccessible2
,
183 reinterpret_cast<void**>(iaccessible2
.Receive()));
186 } // anonymous namespace
189 long NativeViewAccessibilityWin::next_unique_id_
= 1;
190 int NativeViewAccessibilityWin::view_storage_ids_
[kMaxViewStorageIds
] = {0};
191 int NativeViewAccessibilityWin::next_view_storage_id_index_
= 0;
192 std::vector
<int> NativeViewAccessibilityWin::alert_target_view_storage_ids_
;
195 NativeViewAccessibility
* NativeViewAccessibility::Create(View
* view
) {
196 // Make sure ATL is initialized in this module.
197 ui::win::CreateATLModuleIfNeeded();
199 CComObject
<NativeViewAccessibilityWin
>* instance
= NULL
;
200 HRESULT hr
= CComObject
<NativeViewAccessibilityWin
>::CreateInstance(
202 DCHECK(SUCCEEDED(hr
));
203 instance
->set_view(view
);
208 NativeViewAccessibilityWin::NativeViewAccessibilityWin()
209 : unique_id_(next_unique_id_
++) {
212 NativeViewAccessibilityWin::~NativeViewAccessibilityWin() {
216 void NativeViewAccessibilityWin::NotifyAccessibilityEvent(
217 ui::AXEvent event_type
) {
221 ViewStorage
* view_storage
= ViewStorage::GetInstance();
222 HWND hwnd
= HWNDForView(view_
);
223 int view_storage_id
= view_storage_ids_
[next_view_storage_id_index_
];
224 if (view_storage_id
== 0) {
225 view_storage_id
= view_storage
->CreateStorageID();
226 view_storage_ids_
[next_view_storage_id_index_
] = view_storage_id
;
228 view_storage
->RemoveView(view_storage_id
);
230 view_storage
->StoreView(view_storage_id
, view_
);
232 // Positive child ids are used for enumerating direct children,
233 // negative child ids can be used as unique ids to refer to a specific
234 // descendants. Make index into view_storage_ids_ into a negative child id.
236 base::win::kFirstViewsAccessibilityId
- next_view_storage_id_index_
;
237 ::NotifyWinEvent(MSAAEvent(event_type
), hwnd
, OBJID_CLIENT
, child_id
);
238 next_view_storage_id_index_
=
239 (next_view_storage_id_index_
+ 1) % kMaxViewStorageIds
;
241 // Keep track of views that are a target of an alert event.
242 if (event_type
== ui::AX_EVENT_ALERT
)
246 gfx::NativeViewAccessible
NativeViewAccessibilityWin::GetNativeObject() {
250 void NativeViewAccessibilityWin::Destroy() {
255 STDMETHODIMP
NativeViewAccessibilityWin::accHitTest(
256 LONG x_left
, LONG y_top
, VARIANT
* child
) {
260 if (!view_
|| !view_
->GetWidget())
263 // If this is a root view, our widget might have child widgets.
264 // Search child widgets first, since they're on top in the z-order.
265 if (view_
->GetWidget()->GetRootView() == view_
) {
266 std::vector
<Widget
*> child_widgets
;
267 PopulateChildWidgetVector(&child_widgets
);
268 for (size_t i
= 0; i
< child_widgets
.size(); ++i
) {
269 Widget
* child_widget
= child_widgets
[i
];
270 IAccessible
* child_accessible
=
271 child_widget
->GetRootView()->GetNativeViewAccessible();
272 HRESULT result
= child_accessible
->accHitTest(x_left
, y_top
, child
);
278 gfx::Point
point(x_left
, y_top
);
279 View::ConvertPointFromScreen(view_
, &point
);
281 // If the point is not inside this view, return false.
282 if (!view_
->HitTestPoint(point
)) {
283 child
->vt
= VT_EMPTY
;
287 // Check if the point is within any of the immediate children of this
289 View
* hit_child_view
= NULL
;
290 for (int i
= view_
->child_count() - 1; i
>= 0; --i
) {
291 View
* child_view
= view_
->child_at(i
);
292 if (!child_view
->visible())
295 gfx::Point
point_in_child_coords(point
);
296 view_
->ConvertPointToTarget(view_
, child_view
, &point_in_child_coords
);
297 if (child_view
->HitTestPoint(point_in_child_coords
)) {
298 hit_child_view
= child_view
;
303 // If the point was within one of this view's immediate children,
304 // call accHitTest recursively on that child's native view accessible -
305 // which may be a recursive call to this function or it may be overridden,
306 // for example in the case of a WebView.
307 if (hit_child_view
) {
308 HRESULT result
= hit_child_view
->GetNativeViewAccessible()->accHitTest(
309 x_left
, y_top
, child
);
311 // If the recursive call returned CHILDID_SELF, we have to convert that
312 // into a VT_DISPATCH for the return value to this call.
313 if (S_OK
== result
&& child
->vt
== VT_I4
&& child
->lVal
== CHILDID_SELF
) {
314 child
->vt
= VT_DISPATCH
;
315 child
->pdispVal
= hit_child_view
->GetNativeViewAccessible();
316 // Always increment ref when returning a reference to a COM object.
317 child
->pdispVal
->AddRef();
322 // This object is the best match, so return CHILDID_SELF. It's tempting to
323 // simplify the logic and use VT_DISPATCH everywhere, but the Windows
324 // call AccessibleObjectFromPoint will keep calling accHitTest until some
325 // object returns CHILDID_SELF.
327 child
->lVal
= CHILDID_SELF
;
331 HRESULT
NativeViewAccessibilityWin::accDoDefaultAction(VARIANT var_id
) {
332 if (!IsValidId(var_id
))
335 // The object does not support the method. This value is returned for
336 // controls that do not perform actions, such as edit fields.
337 return DISP_E_MEMBERNOTFOUND
;
340 STDMETHODIMP
NativeViewAccessibilityWin::accLocation(
341 LONG
* x_left
, LONG
* y_top
, LONG
* width
, LONG
* height
, VARIANT var_id
) {
342 if (!IsValidId(var_id
) || !x_left
|| !y_top
|| !width
|| !height
)
348 if (!view_
->bounds().IsEmpty()) {
349 *width
= view_
->width();
350 *height
= view_
->height();
351 gfx::Point
topleft(view_
->bounds().origin());
352 View::ConvertPointToScreen(
353 view_
->parent() ? view_
->parent() : view_
, &topleft
);
354 *x_left
= topleft
.x();
355 *y_top
= topleft
.y();
362 STDMETHODIMP
NativeViewAccessibilityWin::accNavigate(
363 LONG nav_dir
, VARIANT start
, VARIANT
* end
) {
364 if (start
.vt
!= VT_I4
|| !end
)
371 case NAVDIR_FIRSTCHILD
:
372 case NAVDIR_LASTCHILD
: {
373 if (start
.lVal
!= CHILDID_SELF
) {
374 // Start of navigation must be on the View itself.
376 } else if (!view_
->has_children()) {
377 // No children found.
381 // Set child_id based on first or last child.
383 if (nav_dir
== NAVDIR_LASTCHILD
)
384 child_id
= view_
->child_count() - 1;
386 View
* child
= view_
->child_at(child_id
);
387 end
->vt
= VT_DISPATCH
;
388 end
->pdispVal
= child
->GetNativeViewAccessible();
389 end
->pdispVal
->AddRef();
394 case NAVDIR_PREVIOUS
:
398 // Retrieve parent to access view index and perform bounds checking.
399 View
* parent
= view_
->parent();
404 if (start
.lVal
== CHILDID_SELF
) {
405 int view_index
= parent
->GetIndexOf(view_
);
406 // Check navigation bounds, adjusting for View child indexing (MSAA
407 // child indexing starts with 1, whereas View indexing starts with 0).
408 if (!IsValidNav(nav_dir
, view_index
, -1,
409 parent
->child_count() - 1)) {
410 // Navigation attempted to go out-of-bounds.
414 if (IsNavDirNext(nav_dir
)) {
421 View
* child
= parent
->child_at(view_index
);
422 end
->pdispVal
= child
->GetNativeViewAccessible();
423 end
->vt
= VT_DISPATCH
;
424 end
->pdispVal
->AddRef();
427 // Check navigation bounds, adjusting for MSAA child indexing (MSAA
428 // child indexing starts with 1, whereas View indexing starts with 0).
429 if (!IsValidNav(nav_dir
, start
.lVal
, 0, parent
->child_count() + 1)) {
430 // Navigation attempted to go out-of-bounds.
434 if (IsNavDirNext(nav_dir
)) {
441 HRESULT result
= this->get_accChild(start
, &end
->pdispVal
);
442 if (result
== S_FALSE
) {
445 end
->lVal
= start
.lVal
;
446 } else if (result
== E_INVALIDARG
) {
449 // Child is not a leaf.
450 end
->vt
= VT_DISPATCH
;
458 // Navigation performed correctly. Global return for this function, if no
459 // error triggered an escape earlier.
463 STDMETHODIMP
NativeViewAccessibilityWin::get_accChild(VARIANT var_child
,
464 IDispatch
** disp_child
) {
465 if (var_child
.vt
!= VT_I4
|| !disp_child
)
468 if (!view_
|| !view_
->GetWidget())
471 LONG child_id
= V_I4(&var_child
);
473 if (child_id
== CHILDID_SELF
) {
474 // Remain with the same dispatch.
478 // If this is a root view, our widget might have child widgets. Include
479 std::vector
<Widget
*> child_widgets
;
480 if (view_
->GetWidget()->GetRootView() == view_
)
481 PopulateChildWidgetVector(&child_widgets
);
482 int child_widget_count
= static_cast<int>(child_widgets
.size());
484 View
* child_view
= NULL
;
486 // Positive child ids are a 1-based child index, used by clients
487 // that want to enumerate all immediate children.
488 int child_id_as_index
= child_id
- 1;
489 if (child_id_as_index
< view_
->child_count()) {
490 child_view
= view_
->child_at(child_id_as_index
);
491 } else if (child_id_as_index
< view_
->child_count() + child_widget_count
) {
492 Widget
* child_widget
=
493 child_widgets
[child_id_as_index
- view_
->child_count()];
494 child_view
= child_widget
->GetRootView();
497 // Negative child ids can be used to map to any descendant.
498 // Check child widget first.
499 for (int i
= 0; i
< child_widget_count
; i
++) {
500 Widget
* child_widget
= child_widgets
[i
];
501 IAccessible
* child_accessible
=
502 child_widget
->GetRootView()->GetNativeViewAccessible();
503 HRESULT result
= child_accessible
->get_accChild(var_child
, disp_child
);
508 // We map child ids to a view storage id that can refer to a
509 // specific view (if that view still exists).
510 int view_storage_id_index
=
511 base::win::kFirstViewsAccessibilityId
- child_id
;
512 if (view_storage_id_index
>= 0 &&
513 view_storage_id_index
< kMaxViewStorageIds
) {
514 int view_storage_id
= view_storage_ids_
[view_storage_id_index
];
515 ViewStorage
* view_storage
= ViewStorage::GetInstance();
516 child_view
= view_storage
->RetrieveView(view_storage_id
);
518 *disp_child
= AccessibleWebViewRegistry::GetInstance()->
519 GetAccessibleFromWebView(view_
, child_id
);
531 *disp_child
= child_view
->GetNativeViewAccessible();
532 (*disp_child
)->AddRef();
536 STDMETHODIMP
NativeViewAccessibilityWin::get_accChildCount(LONG
* child_count
) {
540 if (!view_
|| !view_
->GetWidget())
543 *child_count
= view_
->child_count();
545 // If this is a root view, our widget might have child widgets. Include
547 if (view_
->GetWidget()->GetRootView() == view_
) {
548 std::vector
<Widget
*> child_widgets
;
549 PopulateChildWidgetVector(&child_widgets
);
550 *child_count
+= child_widgets
.size();
556 STDMETHODIMP
NativeViewAccessibilityWin::get_accDefaultAction(
557 VARIANT var_id
, BSTR
* def_action
) {
558 if (!IsValidId(var_id
) || !def_action
)
564 ui::AXViewState state
;
565 view_
->GetAccessibleState(&state
);
566 base::string16 temp_action
= state
.default_action
;
568 if (!temp_action
.empty()) {
569 *def_action
= SysAllocString(temp_action
.c_str());
577 STDMETHODIMP
NativeViewAccessibilityWin::get_accDescription(
578 VARIANT var_id
, BSTR
* desc
) {
579 if (!IsValidId(var_id
) || !desc
)
585 base::string16 temp_desc
;
587 view_
->GetTooltipText(gfx::Point(), &temp_desc
);
588 if (!temp_desc
.empty()) {
589 *desc
= SysAllocString(temp_desc
.c_str());
597 STDMETHODIMP
NativeViewAccessibilityWin::get_accFocus(VARIANT
* focus_child
) {
604 FocusManager
* focus_manager
= view_
->GetFocusManager();
605 View
* focus
= focus_manager
? focus_manager
->GetFocusedView() : NULL
;
606 if (focus
== view_
) {
607 // This view has focus.
608 focus_child
->vt
= VT_I4
;
609 focus_child
->lVal
= CHILDID_SELF
;
610 } else if (focus
&& view_
->Contains(focus
)) {
611 // Return the child object that has the keyboard focus.
612 focus_child
->vt
= VT_DISPATCH
;
613 focus_child
->pdispVal
= focus
->GetNativeViewAccessible();
614 focus_child
->pdispVal
->AddRef();
617 // Neither this object nor any of its children has the keyboard focus.
618 focus_child
->vt
= VT_EMPTY
;
623 STDMETHODIMP
NativeViewAccessibilityWin::get_accKeyboardShortcut(
624 VARIANT var_id
, BSTR
* acc_key
) {
625 if (!IsValidId(var_id
) || !acc_key
)
631 ui::AXViewState state
;
632 view_
->GetAccessibleState(&state
);
633 base::string16 temp_key
= state
.keyboard_shortcut
;
635 if (!temp_key
.empty()) {
636 *acc_key
= SysAllocString(temp_key
.c_str());
644 STDMETHODIMP
NativeViewAccessibilityWin::get_accName(
645 VARIANT var_id
, BSTR
* name
) {
646 if (!IsValidId(var_id
) || !name
)
652 // Retrieve the current view's name.
653 ui::AXViewState state
;
654 view_
->GetAccessibleState(&state
);
655 base::string16 temp_name
= state
.name
;
656 if (!temp_name
.empty()) {
657 // Return name retrieved.
658 *name
= SysAllocString(temp_name
.c_str());
660 // If view has no name, return S_FALSE.
667 STDMETHODIMP
NativeViewAccessibilityWin::get_accParent(
668 IDispatch
** disp_parent
) {
676 View
* parent_view
= view_
->parent();
679 HWND hwnd
= HWNDForView(view_
);
683 return ::AccessibleObjectFromWindow(
684 hwnd
, OBJID_WINDOW
, IID_IAccessible
,
685 reinterpret_cast<void**>(disp_parent
));
688 *disp_parent
= parent_view
->GetNativeViewAccessible();
689 (*disp_parent
)->AddRef();
693 STDMETHODIMP
NativeViewAccessibilityWin::get_accRole(
694 VARIANT var_id
, VARIANT
* role
) {
695 if (!IsValidId(var_id
) || !role
)
701 ui::AXViewState state
;
702 view_
->GetAccessibleState(&state
);
704 role
->lVal
= MSAARole(state
.role
);
708 STDMETHODIMP
NativeViewAccessibilityWin::get_accState(
709 VARIANT var_id
, VARIANT
* state
) {
710 // This returns MSAA states. See also the IAccessible2 interface
713 if (!IsValidId(var_id
) || !state
)
721 // Retrieve all currently applicable states of the parent.
722 SetState(state
, view_
);
724 // Make sure that state is not empty, and has the proper type.
725 if (state
->vt
== VT_EMPTY
)
731 STDMETHODIMP
NativeViewAccessibilityWin::get_accValue(VARIANT var_id
,
733 if (!IsValidId(var_id
) || !value
)
739 // Retrieve the current view's value.
740 ui::AXViewState state
;
741 view_
->GetAccessibleState(&state
);
742 base::string16 temp_value
= state
.value
;
744 if (!temp_value
.empty()) {
745 // Return value retrieved.
746 *value
= SysAllocString(temp_value
.c_str());
748 // If view has no value, fall back into the default implementation.
756 STDMETHODIMP
NativeViewAccessibilityWin::put_accValue(VARIANT var_id
,
758 if (!IsValidId(var_id
) || !new_value
)
764 // Return an error if the view can't set the value.
765 ui::AXViewState state
;
766 view_
->GetAccessibleState(&state
);
767 if (state
.set_value_callback
.is_null())
770 state
.set_value_callback
.Run(new_value
);
774 // IAccessible functions not supported.
776 STDMETHODIMP
NativeViewAccessibilityWin::get_accSelection(VARIANT
* selected
) {
778 selected
->vt
= VT_EMPTY
;
782 STDMETHODIMP
NativeViewAccessibilityWin::accSelect(
783 LONG flagsSelect
, VARIANT var_id
) {
787 STDMETHODIMP
NativeViewAccessibilityWin::get_accHelp(
788 VARIANT var_id
, BSTR
* help
) {
789 base::string16 temp
= base::UTF8ToUTF16(view_
->GetClassName());
790 *help
= SysAllocString(temp
.c_str());
794 STDMETHODIMP
NativeViewAccessibilityWin::get_accHelpTopic(
795 BSTR
* help_file
, VARIANT var_id
, LONG
* topic_id
) {
800 *topic_id
= static_cast<LONG
>(-1);
805 STDMETHODIMP
NativeViewAccessibilityWin::put_accName(
806 VARIANT var_id
, BSTR put_name
) {
815 STDMETHODIMP
NativeViewAccessibilityWin::role(LONG
* role
) {
822 ui::AXViewState state
;
823 view_
->GetAccessibleState(&state
);
824 *role
= MSAARole(state
.role
);
828 STDMETHODIMP
NativeViewAccessibilityWin::get_states(AccessibleStates
* states
) {
829 // This returns IAccessible2 states, which supplement MSAA states.
830 // See also the MSAA interface get_accState.
838 ui::AXViewState state
;
839 view_
->GetAccessibleState(&state
);
841 // There are only a couple of states we need to support
842 // in IAccessible2. If any more are added, we may want to
843 // add a helper function like MSAAState.
844 *states
= IA2_STATE_OPAQUE
;
845 if (state
.HasStateFlag(ui::AX_STATE_EDITABLE
))
846 *states
|= IA2_STATE_EDITABLE
;
851 STDMETHODIMP
NativeViewAccessibilityWin::get_uniqueID(LONG
* unique_id
) {
858 *unique_id
= unique_id_
;
862 STDMETHODIMP
NativeViewAccessibilityWin::get_windowHandle(HWND
* window_handle
) {
869 *window_handle
= HWNDForView(view_
);
870 return *window_handle
? S_OK
: S_FALSE
;
873 STDMETHODIMP
NativeViewAccessibilityWin::get_relationTargetsOfType(
881 if (!targets
|| !n_targets
)
887 // Only respond to requests for relations of type "alerts" on the
889 base::string16
type(type_bstr
);
890 if (type
!= L
"alerts" || view_
->parent())
893 // Collect all of the alert views that are still valid.
894 std::vector
<View
*> alert_views
;
895 ViewStorage
* view_storage
= ViewStorage::GetInstance();
896 for (size_t i
= 0; i
< alert_target_view_storage_ids_
.size(); ++i
) {
897 int view_storage_id
= alert_target_view_storage_ids_
[i
];
898 View
* view
= view_storage
->RetrieveView(view_storage_id
);
899 if (!view
|| !view_
->Contains(view
))
901 alert_views
.push_back(view
);
904 long count
= alert_views
.size();
908 // Don't return more targets than max_targets - but note that the caller
909 // is allowed to specify max_targets=0 to mean no limit.
910 if (max_targets
> 0 && count
> max_targets
)
913 // Return the number of targets.
916 // Allocate COM memory for the result array and populate it.
917 *targets
= static_cast<IUnknown
**>(
918 CoTaskMemAlloc(count
* sizeof(IUnknown
*)));
919 for (long i
= 0; i
< count
; ++i
) {
920 (*targets
)[i
] = alert_views
[i
]->GetNativeViewAccessible();
921 (*targets
)[i
]->AddRef();
926 STDMETHODIMP
NativeViewAccessibilityWin::get_attributes(BSTR
* attributes
) {
933 base::string16 attributes_str
;
935 // Text fields need to report the attribute "text-model:a1" to instruct
936 // screen readers to use IAccessible2 APIs to handle text editing in this
937 // object (as opposed to treating it like a native Windows text box).
938 // The text-model:a1 attribute is documented here:
939 // http://www.linuxfoundation.org/collaborate/workgroups/accessibility/ia2/ia2_implementation_guide
940 ui::AXViewState state
;
941 view_
->GetAccessibleState(&state
);
942 if (state
.role
== ui::AX_ROLE_TEXT_FIELD
) {
943 attributes_str
= L
"text-model:a1;";
946 *attributes
= SysAllocString(attributes_str
.c_str());
955 STDMETHODIMP
NativeViewAccessibilityWin::get_nCharacters(LONG
* n_characters
) {
962 base::string16 text
= TextForIAccessibleText();
963 *n_characters
= static_cast<LONG
>(text
.size());
967 STDMETHODIMP
NativeViewAccessibilityWin::get_caretOffset(LONG
* offset
) {
974 ui::AXViewState state
;
975 view_
->GetAccessibleState(&state
);
976 *offset
= static_cast<LONG
>(state
.selection_end
);
980 STDMETHODIMP
NativeViewAccessibilityWin::get_nSelections(LONG
* n_selections
) {
987 ui::AXViewState state
;
988 view_
->GetAccessibleState(&state
);
989 if (state
.selection_start
!= state
.selection_end
)
996 STDMETHODIMP
NativeViewAccessibilityWin::get_selection(LONG selection_index
,
1002 if (!start_offset
|| !end_offset
|| selection_index
!= 0)
1003 return E_INVALIDARG
;
1005 ui::AXViewState state
;
1006 view_
->GetAccessibleState(&state
);
1007 *start_offset
= static_cast<LONG
>(state
.selection_start
);
1008 *end_offset
= static_cast<LONG
>(state
.selection_end
);
1012 STDMETHODIMP
NativeViewAccessibilityWin::get_text(LONG start_offset
,
1018 ui::AXViewState state
;
1019 view_
->GetAccessibleState(&state
);
1020 base::string16 text_str
= TextForIAccessibleText();
1021 LONG len
= static_cast<LONG
>(text_str
.size());
1023 if (start_offset
== IA2_TEXT_OFFSET_LENGTH
) {
1025 } else if (start_offset
== IA2_TEXT_OFFSET_CARET
) {
1026 start_offset
= static_cast<LONG
>(state
.selection_end
);
1028 if (end_offset
== IA2_TEXT_OFFSET_LENGTH
) {
1029 end_offset
= static_cast<LONG
>(text_str
.size());
1030 } else if (end_offset
== IA2_TEXT_OFFSET_CARET
) {
1031 end_offset
= static_cast<LONG
>(state
.selection_end
);
1034 // The spec allows the arguments to be reversed.
1035 if (start_offset
> end_offset
) {
1036 LONG tmp
= start_offset
;
1037 start_offset
= end_offset
;
1041 // The spec does not allow the start or end offsets to be out or range;
1042 // we must return an error if so.
1043 if (start_offset
< 0)
1044 return E_INVALIDARG
;
1045 if (end_offset
> len
)
1046 return E_INVALIDARG
;
1048 base::string16 substr
=
1049 text_str
.substr(start_offset
, end_offset
- start_offset
);
1053 *text
= SysAllocString(substr
.c_str());
1058 STDMETHODIMP
NativeViewAccessibilityWin::get_textAtOffset(
1060 enum IA2TextBoundaryType boundary_type
,
1061 LONG
* start_offset
, LONG
* end_offset
,
1063 if (!start_offset
|| !end_offset
|| !text
)
1064 return E_INVALIDARG
;
1066 // The IAccessible2 spec says we don't have to implement the "sentence"
1067 // boundary type, we can just let the screenreader handle it.
1068 if (boundary_type
== IA2_TEXT_BOUNDARY_SENTENCE
) {
1075 const base::string16
& text_str
= TextForIAccessibleText();
1077 *start_offset
= FindBoundary(
1078 text_str
, boundary_type
, offset
, ui::BACKWARDS_DIRECTION
);
1079 *end_offset
= FindBoundary(
1080 text_str
, boundary_type
, offset
, ui::FORWARDS_DIRECTION
);
1081 return get_text(*start_offset
, *end_offset
, text
);
1084 STDMETHODIMP
NativeViewAccessibilityWin::get_textBeforeOffset(
1086 enum IA2TextBoundaryType boundary_type
,
1087 LONG
* start_offset
, LONG
* end_offset
,
1089 if (!start_offset
|| !end_offset
|| !text
)
1090 return E_INVALIDARG
;
1092 // The IAccessible2 spec says we don't have to implement the "sentence"
1093 // boundary type, we can just let the screenreader handle it.
1094 if (boundary_type
== IA2_TEXT_BOUNDARY_SENTENCE
) {
1101 const base::string16
& text_str
= TextForIAccessibleText();
1103 *start_offset
= FindBoundary(
1104 text_str
, boundary_type
, offset
, ui::BACKWARDS_DIRECTION
);
1105 *end_offset
= offset
;
1106 return get_text(*start_offset
, *end_offset
, text
);
1109 STDMETHODIMP
NativeViewAccessibilityWin::get_textAfterOffset(
1111 enum IA2TextBoundaryType boundary_type
,
1112 LONG
* start_offset
, LONG
* end_offset
,
1114 if (!start_offset
|| !end_offset
|| !text
)
1115 return E_INVALIDARG
;
1117 // The IAccessible2 spec says we don't have to implement the "sentence"
1118 // boundary type, we can just let the screenreader handle it.
1119 if (boundary_type
== IA2_TEXT_BOUNDARY_SENTENCE
) {
1126 const base::string16
& text_str
= TextForIAccessibleText();
1128 *start_offset
= offset
;
1129 *end_offset
= FindBoundary(
1130 text_str
, boundary_type
, offset
, ui::FORWARDS_DIRECTION
);
1131 return get_text(*start_offset
, *end_offset
, text
);
1134 STDMETHODIMP
NativeViewAccessibilityWin::get_offsetAtPoint(
1135 LONG x
, LONG y
, enum IA2CoordinateType coord_type
, LONG
* offset
) {
1140 return E_INVALIDARG
;
1142 // We don't support this method, but we have to return something
1143 // rather than E_NOTIMPL or screen readers will complain.
1149 // IServiceProvider methods.
1152 STDMETHODIMP
NativeViewAccessibilityWin::QueryService(
1153 REFGUID guidService
, REFIID riid
, void** object
) {
1157 if (riid
== IID_IAccessible2
|| riid
== IID_IAccessible2_2
)
1158 AccessibleWebViewRegistry::GetInstance()->EnableIAccessible2Support();
1160 if (guidService
== IID_IAccessible
||
1161 guidService
== IID_IAccessible2
||
1162 guidService
== IID_IAccessible2_2
||
1163 guidService
== IID_IAccessibleText
) {
1164 return QueryInterface(riid
, object
);
1167 // We only support the IAccessibleEx interface on Windows 8 and above. This
1168 // is needed for the On screen Keyboard to show up in metro mode, when the
1169 // user taps an editable region in the window.
1170 // All methods in the IAccessibleEx interface are unimplemented.
1171 if (riid
== IID_IAccessibleEx
&&
1172 base::win::GetVersion() >= base::win::VERSION_WIN8
) {
1173 return QueryInterface(riid
, object
);
1180 STDMETHODIMP
NativeViewAccessibilityWin::GetPatternProvider(
1181 PATTERNID id
, IUnknown
** provider
) {
1182 DVLOG(1) << "In Function: "
1184 << " for pattern id: "
1186 if (id
== UIA_ValuePatternId
|| id
== UIA_TextPatternId
) {
1187 ui::AXViewState state
;
1188 view_
->GetAccessibleState(&state
);
1189 long role
= MSAARole(state
.role
);
1191 if (role
== ROLE_SYSTEM_TEXT
) {
1192 DVLOG(1) << "Returning UIA text provider";
1193 base::win::UIATextProvider::CreateTextProvider(
1194 state
.value
, true, provider
);
1201 STDMETHODIMP
NativeViewAccessibilityWin::GetPropertyValue(PROPERTYID id
,
1203 DVLOG(1) << "In Function: "
1205 << " for property id: "
1207 if (id
== UIA_ControlTypePropertyId
) {
1208 ui::AXViewState state
;
1209 view_
->GetAccessibleState(&state
);
1210 long role
= MSAARole(state
.role
);
1211 if (role
== ROLE_SYSTEM_TEXT
) {
1213 ret
->lVal
= UIA_EditControlTypeId
;
1214 DVLOG(1) << "Returning Edit control type";
1216 DVLOG(1) << "Returning empty control type";
1217 V_VT(ret
) = VT_EMPTY
;
1220 V_VT(ret
) = VT_EMPTY
;
1229 void NativeViewAccessibility::RegisterWebView(View
* web_view
) {
1230 AccessibleWebViewRegistry::GetInstance()->RegisterWebView(web_view
);
1233 void NativeViewAccessibility::UnregisterWebView(View
* web_view
) {
1234 AccessibleWebViewRegistry::GetInstance()->UnregisterWebView(web_view
);
1237 int32
NativeViewAccessibilityWin::MSAAEvent(ui::AXEvent event
) {
1239 case ui::AX_EVENT_ALERT
:
1240 return EVENT_SYSTEM_ALERT
;
1241 case ui::AX_EVENT_FOCUS
:
1242 return EVENT_OBJECT_FOCUS
;
1243 case ui::AX_EVENT_MENU_START
:
1244 return EVENT_SYSTEM_MENUSTART
;
1245 case ui::AX_EVENT_MENU_END
:
1246 return EVENT_SYSTEM_MENUEND
;
1247 case ui::AX_EVENT_MENU_POPUP_START
:
1248 return EVENT_SYSTEM_MENUPOPUPSTART
;
1249 case ui::AX_EVENT_MENU_POPUP_END
:
1250 return EVENT_SYSTEM_MENUPOPUPEND
;
1251 case ui::AX_EVENT_SELECTION
:
1252 return EVENT_OBJECT_SELECTION
;
1253 case ui::AX_EVENT_SELECTION_ADD
:
1254 return EVENT_OBJECT_SELECTIONADD
;
1255 case ui::AX_EVENT_SELECTION_REMOVE
:
1256 return EVENT_OBJECT_SELECTIONREMOVE
;
1257 case ui::AX_EVENT_TEXT_CHANGED
:
1258 return EVENT_OBJECT_NAMECHANGE
;
1259 case ui::AX_EVENT_TEXT_SELECTION_CHANGED
:
1260 return IA2_EVENT_TEXT_CARET_MOVED
;
1261 case ui::AX_EVENT_VALUE_CHANGED
:
1262 return EVENT_OBJECT_VALUECHANGE
;
1264 // Not supported or invalid event.
1270 int32
NativeViewAccessibilityWin::MSAARole(ui::AXRole role
) {
1272 case ui::AX_ROLE_ALERT
:
1273 return ROLE_SYSTEM_ALERT
;
1274 case ui::AX_ROLE_APPLICATION
:
1275 return ROLE_SYSTEM_APPLICATION
;
1276 case ui::AX_ROLE_BUTTON_DROP_DOWN
:
1277 return ROLE_SYSTEM_BUTTONDROPDOWN
;
1278 case ui::AX_ROLE_POP_UP_BUTTON
:
1279 return ROLE_SYSTEM_BUTTONMENU
;
1280 case ui::AX_ROLE_CHECK_BOX
:
1281 return ROLE_SYSTEM_CHECKBUTTON
;
1282 case ui::AX_ROLE_COMBO_BOX
:
1283 return ROLE_SYSTEM_COMBOBOX
;
1284 case ui::AX_ROLE_DIALOG
:
1285 return ROLE_SYSTEM_DIALOG
;
1286 case ui::AX_ROLE_GROUP
:
1287 return ROLE_SYSTEM_GROUPING
;
1288 case ui::AX_ROLE_IMAGE
:
1289 return ROLE_SYSTEM_GRAPHIC
;
1290 case ui::AX_ROLE_LINK
:
1291 return ROLE_SYSTEM_LINK
;
1292 case ui::AX_ROLE_LOCATION_BAR
:
1293 return ROLE_SYSTEM_GROUPING
;
1294 case ui::AX_ROLE_MENU_BAR
:
1295 return ROLE_SYSTEM_MENUBAR
;
1296 case ui::AX_ROLE_MENU_ITEM
:
1297 return ROLE_SYSTEM_MENUITEM
;
1298 case ui::AX_ROLE_MENU_LIST_POPUP
:
1299 return ROLE_SYSTEM_MENUPOPUP
;
1300 case ui::AX_ROLE_TREE
:
1301 return ROLE_SYSTEM_OUTLINE
;
1302 case ui::AX_ROLE_TREE_ITEM
:
1303 return ROLE_SYSTEM_OUTLINEITEM
;
1304 case ui::AX_ROLE_TAB
:
1305 return ROLE_SYSTEM_PAGETAB
;
1306 case ui::AX_ROLE_TAB_LIST
:
1307 return ROLE_SYSTEM_PAGETABLIST
;
1308 case ui::AX_ROLE_PANE
:
1309 return ROLE_SYSTEM_PANE
;
1310 case ui::AX_ROLE_PROGRESS_INDICATOR
:
1311 return ROLE_SYSTEM_PROGRESSBAR
;
1312 case ui::AX_ROLE_BUTTON
:
1313 return ROLE_SYSTEM_PUSHBUTTON
;
1314 case ui::AX_ROLE_RADIO_BUTTON
:
1315 return ROLE_SYSTEM_RADIOBUTTON
;
1316 case ui::AX_ROLE_SCROLL_BAR
:
1317 return ROLE_SYSTEM_SCROLLBAR
;
1318 case ui::AX_ROLE_SPLITTER
:
1319 return ROLE_SYSTEM_SEPARATOR
;
1320 case ui::AX_ROLE_SLIDER
:
1321 return ROLE_SYSTEM_SLIDER
;
1322 case ui::AX_ROLE_STATIC_TEXT
:
1323 return ROLE_SYSTEM_STATICTEXT
;
1324 case ui::AX_ROLE_TEXT_FIELD
:
1325 return ROLE_SYSTEM_TEXT
;
1326 case ui::AX_ROLE_TITLE_BAR
:
1327 return ROLE_SYSTEM_TITLEBAR
;
1328 case ui::AX_ROLE_TOOLBAR
:
1329 return ROLE_SYSTEM_TOOLBAR
;
1330 case ui::AX_ROLE_WINDOW
:
1331 return ROLE_SYSTEM_WINDOW
;
1332 case ui::AX_ROLE_CLIENT
:
1334 // This is the default role for MSAA.
1335 return ROLE_SYSTEM_CLIENT
;
1339 int32
NativeViewAccessibilityWin::MSAAState(const ui::AXViewState
& state
) {
1340 // This maps MSAA states for get_accState(). See also the IAccessible2
1341 // interface get_states().
1343 int32 msaa_state
= 0;
1344 if (state
.HasStateFlag(ui::AX_STATE_CHECKED
))
1345 msaa_state
|= STATE_SYSTEM_CHECKED
;
1346 if (state
.HasStateFlag(ui::AX_STATE_COLLAPSED
))
1347 msaa_state
|= STATE_SYSTEM_COLLAPSED
;
1348 if (state
.HasStateFlag(ui::AX_STATE_DEFAULT
))
1349 msaa_state
|= STATE_SYSTEM_DEFAULT
;
1350 if (state
.HasStateFlag(ui::AX_STATE_EXPANDED
))
1351 msaa_state
|= STATE_SYSTEM_EXPANDED
;
1352 if (state
.HasStateFlag(ui::AX_STATE_HASPOPUP
))
1353 msaa_state
|= STATE_SYSTEM_HASPOPUP
;
1354 if (state
.HasStateFlag(ui::AX_STATE_HOVERED
))
1355 msaa_state
|= STATE_SYSTEM_HOTTRACKED
;
1356 if (state
.HasStateFlag(ui::AX_STATE_INVISIBLE
))
1357 msaa_state
|= STATE_SYSTEM_INVISIBLE
;
1358 if (state
.HasStateFlag(ui::AX_STATE_LINKED
))
1359 msaa_state
|= STATE_SYSTEM_LINKED
;
1360 if (state
.HasStateFlag(ui::AX_STATE_OFFSCREEN
))
1361 msaa_state
|= STATE_SYSTEM_OFFSCREEN
;
1362 if (state
.HasStateFlag(ui::AX_STATE_PRESSED
))
1363 msaa_state
|= STATE_SYSTEM_PRESSED
;
1364 if (state
.HasStateFlag(ui::AX_STATE_PROTECTED
))
1365 msaa_state
|= STATE_SYSTEM_PROTECTED
;
1366 if (state
.HasStateFlag(ui::AX_STATE_READ_ONLY
))
1367 msaa_state
|= STATE_SYSTEM_READONLY
;
1368 if (state
.HasStateFlag(ui::AX_STATE_SELECTABLE
))
1369 msaa_state
|= STATE_SYSTEM_SELECTABLE
;
1370 if (state
.HasStateFlag(ui::AX_STATE_SELECTED
))
1371 msaa_state
|= STATE_SYSTEM_SELECTED
;
1372 if (state
.HasStateFlag(ui::AX_STATE_FOCUSED
))
1373 msaa_state
|= STATE_SYSTEM_FOCUSED
;
1374 if (state
.HasStateFlag(ui::AX_STATE_DISABLED
))
1375 msaa_state
|= STATE_SYSTEM_UNAVAILABLE
;
1383 bool NativeViewAccessibilityWin::IsNavDirNext(int nav_dir
) const {
1384 return (nav_dir
== NAVDIR_RIGHT
||
1385 nav_dir
== NAVDIR_DOWN
||
1386 nav_dir
== NAVDIR_NEXT
);
1389 bool NativeViewAccessibilityWin::IsValidNav(
1390 int nav_dir
, int start_id
, int lower_bound
, int upper_bound
) const {
1391 if (IsNavDirNext(nav_dir
)) {
1392 if ((start_id
+ 1) > upper_bound
) {
1396 if ((start_id
- 1) <= lower_bound
) {
1403 bool NativeViewAccessibilityWin::IsValidId(const VARIANT
& child
) const {
1404 // View accessibility returns an IAccessible for each view so we only support
1405 // the CHILDID_SELF id.
1406 return (VT_I4
== child
.vt
) && (CHILDID_SELF
== child
.lVal
);
1409 void NativeViewAccessibilityWin::SetState(
1410 VARIANT
* msaa_state
, View
* view
) {
1411 // Ensure the output param is initialized to zero.
1412 msaa_state
->lVal
= 0;
1414 // Default state; all views can have accessibility focus.
1415 msaa_state
->lVal
|= STATE_SYSTEM_FOCUSABLE
;
1420 if (!view
->enabled())
1421 msaa_state
->lVal
|= STATE_SYSTEM_UNAVAILABLE
;
1422 if (!view
->visible())
1423 msaa_state
->lVal
|= STATE_SYSTEM_INVISIBLE
;
1424 if (!strcmp(view
->GetClassName(), CustomButton::kViewClassName
)) {
1425 CustomButton
* button
= static_cast<CustomButton
*>(view
);
1426 if (button
->IsHotTracked())
1427 msaa_state
->lVal
|= STATE_SYSTEM_HOTTRACKED
;
1429 if (view
->HasFocus())
1430 msaa_state
->lVal
|= STATE_SYSTEM_FOCUSED
;
1432 // Add on any view-specific states.
1433 ui::AXViewState view_state
;
1434 view
->GetAccessibleState(&view_state
);
1435 msaa_state
->lVal
|= MSAAState(view_state
);
1438 base::string16
NativeViewAccessibilityWin::TextForIAccessibleText() {
1439 ui::AXViewState state
;
1440 view_
->GetAccessibleState(&state
);
1441 if (state
.role
== ui::AX_ROLE_TEXT_FIELD
)
1447 void NativeViewAccessibilityWin::HandleSpecialTextOffset(
1448 const base::string16
& text
, LONG
* offset
) {
1449 if (*offset
== IA2_TEXT_OFFSET_LENGTH
) {
1450 *offset
= static_cast<LONG
>(text
.size());
1451 } else if (*offset
== IA2_TEXT_OFFSET_CARET
) {
1452 get_caretOffset(offset
);
1456 ui::TextBoundaryType
NativeViewAccessibilityWin::IA2TextBoundaryToTextBoundary(
1457 IA2TextBoundaryType ia2_boundary
) {
1458 switch(ia2_boundary
) {
1459 case IA2_TEXT_BOUNDARY_CHAR
: return ui::CHAR_BOUNDARY
;
1460 case IA2_TEXT_BOUNDARY_WORD
: return ui::WORD_BOUNDARY
;
1461 case IA2_TEXT_BOUNDARY_LINE
: return ui::LINE_BOUNDARY
;
1462 case IA2_TEXT_BOUNDARY_SENTENCE
: return ui::SENTENCE_BOUNDARY
;
1463 case IA2_TEXT_BOUNDARY_PARAGRAPH
: return ui::PARAGRAPH_BOUNDARY
;
1464 case IA2_TEXT_BOUNDARY_ALL
: return ui::ALL_BOUNDARY
;
1467 return ui::CHAR_BOUNDARY
;
1471 LONG
NativeViewAccessibilityWin::FindBoundary(
1472 const base::string16
& text
,
1473 IA2TextBoundaryType ia2_boundary
,
1475 ui::TextBoundaryDirection direction
) {
1476 HandleSpecialTextOffset(text
, &start_offset
);
1477 ui::TextBoundaryType boundary
= IA2TextBoundaryToTextBoundary(ia2_boundary
);
1478 std::vector
<int32
> line_breaks
;
1479 return ui::FindAccessibleTextBoundary(
1480 text
, line_breaks
, boundary
, start_offset
, direction
);
1483 void NativeViewAccessibilityWin::PopulateChildWidgetVector(
1484 std::vector
<Widget
*>* result_child_widgets
) {
1485 const Widget
* widget
= view()->GetWidget();
1489 std::set
<Widget
*> child_widgets
;
1490 Widget::GetAllChildWidgets(widget
->GetNativeView(), &child_widgets
);
1491 Widget::GetAllOwnedWidgets(widget
->GetNativeView(), &child_widgets
);
1492 for (std::set
<Widget
*>::const_iterator iter
= child_widgets
.begin();
1493 iter
!= child_widgets
.end(); ++iter
) {
1494 Widget
* child_widget
= *iter
;
1495 if (child_widget
== widget
)
1498 if (!child_widget
->IsVisible())
1501 if (widget
->GetNativeWindowProperty(kWidgetNativeViewHostKey
))
1504 result_child_widgets
->push_back(child_widget
);
1508 void NativeViewAccessibilityWin::AddAlertTarget() {
1509 ViewStorage
* view_storage
= ViewStorage::GetInstance();
1510 for (size_t i
= 0; i
< alert_target_view_storage_ids_
.size(); ++i
) {
1511 int view_storage_id
= alert_target_view_storage_ids_
[i
];
1512 View
* view
= view_storage
->RetrieveView(view_storage_id
);
1516 int view_storage_id
= view_storage
->CreateStorageID();
1517 view_storage
->StoreView(view_storage_id
, view_
);
1518 alert_target_view_storage_ids_
.push_back(view_storage_id
);
1521 void NativeViewAccessibilityWin::RemoveAlertTarget() {
1522 ViewStorage
* view_storage
= ViewStorage::GetInstance();
1524 while (i
< alert_target_view_storage_ids_
.size()) {
1525 int view_storage_id
= alert_target_view_storage_ids_
[i
];
1526 View
* view
= view_storage
->RetrieveView(view_storage_id
);
1527 if (view
== NULL
|| view
== view_
) {
1528 alert_target_view_storage_ids_
.erase(
1529 alert_target_view_storage_ids_
.begin() + i
);
1536 } // namespace views