Index: chrome/browser/views/bookmark_bar_view.h |
=================================================================== |
--- chrome/browser/views/bookmark_bar_view.h (revision 20591) |
+++ chrome/browser/views/bookmark_bar_view.h (working copy) |
@@ -98,6 +98,9 @@ |
virtual int OnDragUpdated(const views::DropTargetEvent& event); |
virtual void OnDragExited(); |
virtual int OnPerformDrop(const views::DropTargetEvent& event); |
+ virtual bool GetAccessibleName(std::wstring* name); |
+ virtual bool GetAccessibleRole(AccessibilityTypes::Role* role); |
+ virtual void SetAccessibleName(const std::wstring& name); |
// Called when fullscreen mode toggles on or off; this affects our layout. |
void OnFullscreenToggled(bool fullscreen); |
@@ -424,6 +427,9 @@ |
// Background for extension toolstrips. |
SkBitmap toolstrip_background_; |
+ // Storage of strings needed for accessibility. |
+ std::wstring accessible_name_; |
+ |
DISALLOW_COPY_AND_ASSIGN(BookmarkBarView); |
}; |