Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Unified Diff: ui/views/accessibility/native_view_accessibility_win.h

Issue 23441024: Implement put_accvalue for textfields and location bar. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/views/accessibility/native_view_accessibility_win.h
diff --git a/ui/views/accessibility/native_view_accessibility_win.h b/ui/views/accessibility/native_view_accessibility_win.h
index aff2a6f6e8725bd04a30ba1636e2c2da3a7ad653..32648302fcc653396cbdce14402a84c5246ee9aa 100644
--- a/ui/views/accessibility/native_view_accessibility_win.h
+++ b/ui/views/accessibility/native_view_accessibility_win.h
@@ -117,7 +117,9 @@ NativeViewAccessibilityWin
// Retrieves the current value associated with the specified object.
STDMETHODIMP get_accValue(VARIANT var_id, BSTR* value);
- // Non-supported IAccessible methods.
+ // Set the value of the control. Not used by screen readers, but used
msw 2013/08/31 20:22:36 optional nit: put this and get_accValue together w
dmazzoni 2013/09/03 20:20:11 Done.
+ // frequently by automation software.
+ STDMETHODIMP put_accValue(VARIANT var_id, BSTR new_value);
// Selections not applicable to views.
STDMETHODIMP get_accSelection(VARIANT* selected);
@@ -131,7 +133,6 @@ NativeViewAccessibilityWin
// Deprecated functions, not implemented here.
STDMETHODIMP put_accName(VARIANT var_id, BSTR put_name);
- STDMETHODIMP put_accValue(VARIANT var_id, BSTR put_val);
//
// IAccessible2

Powered by Google App Engine
This is Rietveld 408576698