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

Unified Diff: ui/app_list/search_box_model.cc

Issue 935293002: Launcher Search box, Back and Mic buttons now focusable in ChromeVox. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tileitemview-setselected
Patch Set: Avoid using ContentsView (fix tests). Created 5 years, 10 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
« no previous file with comments | « ui/app_list/search_box_model.h ('k') | ui/app_list/views/search_box_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/search_box_model.cc
diff --git a/ui/app_list/search_box_model.cc b/ui/app_list/search_box_model.cc
index ea6b40ccc34d3c650d1e212a66ecb0a23b09fe91..87632d5f4b57800246e7e12a86552dc6b7974aff 100644
--- a/ui/app_list/search_box_model.cc
+++ b/ui/app_list/search_box_model.cc
@@ -13,11 +13,13 @@ SearchBoxModel::SpeechButtonProperty::SpeechButtonProperty(
const gfx::ImageSkia& on_icon,
const base::string16& on_tooltip,
const gfx::ImageSkia& off_icon,
- const base::string16& off_tooltip)
+ const base::string16& off_tooltip,
+ const base::string16& accessible_name)
: on_icon(on_icon),
on_tooltip(on_tooltip),
off_icon(off_icon),
- off_tooltip(off_tooltip) {
+ off_tooltip(off_tooltip),
+ accessible_name(accessible_name) {
}
SearchBoxModel::SpeechButtonProperty::~SpeechButtonProperty() {
« no previous file with comments | « ui/app_list/search_box_model.h ('k') | ui/app_list/views/search_box_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698