| Index: chrome/views/widget/root_view.cc
|
| ===================================================================
|
| --- chrome/views/widget/root_view.cc (revision 14426)
|
| +++ chrome/views/widget/root_view.cc (working copy)
|
| @@ -960,6 +960,13 @@
|
| //
|
| /////////////////////////////////////////////////////////////////////////////
|
|
|
| +bool RootView::GetAccessibleRole(AccessibilityTypes::Role* role) {
|
| + DCHECK(role);
|
| +
|
| + *role = AccessibilityTypes::ROLE_APPLICATION;
|
| + return true;
|
| +}
|
| +
|
| bool RootView::GetAccessibleName(std::wstring* name) {
|
| if (!accessible_name_.empty()) {
|
| *name = accessible_name_;
|
|
|