| Index: ui/app_list/search_box_model.h
|
| diff --git a/ui/app_list/search_box_model.h b/ui/app_list/search_box_model.h
|
| index cdb20cddbe3333171d2f2a43f00aa4ff8d45b0b9..9faaab288bd5c842b2dfb777f62c81fa304d5014 100644
|
| --- a/ui/app_list/search_box_model.h
|
| +++ b/ui/app_list/search_box_model.h
|
| @@ -28,7 +28,8 @@ class APP_LIST_EXPORT SearchBoxModel {
|
| 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);
|
| ~SpeechButtonProperty();
|
|
|
| // The icon/tooltip when the hotword is on.
|
| @@ -38,6 +39,9 @@ class APP_LIST_EXPORT SearchBoxModel {
|
| // The icon/tooltip when the hotword is off.
|
| gfx::ImageSkia off_icon;
|
| base::string16 off_tooltip;
|
| +
|
| + // The accessibility name of the button.
|
| + base::string16 accessible_name;
|
| };
|
|
|
| SearchBoxModel();
|
|
|