| Index: chrome/browser/views/browser_actions_container.h
|
| diff --git a/chrome/browser/views/browser_actions_container.h b/chrome/browser/views/browser_actions_container.h
|
| index bd25f897e507a0aa276a18a934f2b7fbe2340f94..ef0a52e4bf7dfb3fcaca5811081501502c7e6559 100644
|
| --- a/chrome/browser/views/browser_actions_container.h
|
| +++ b/chrome/browser/views/browser_actions_container.h
|
| @@ -137,6 +137,10 @@ class BrowserActionView : public views::View {
|
| // returned object.
|
| gfx::Canvas* GetIconWithBadge();
|
|
|
| + // Accessibility accessors, overridden from View.
|
| + virtual bool GetAccessibleRole(AccessibilityTypes::Role* role);
|
| + virtual bool GetAccessibleName(std::wstring* name);
|
| +
|
| private:
|
| virtual void Layout();
|
|
|
| @@ -305,6 +309,8 @@ class BrowserActionsContainer
|
| virtual int OnDragUpdated(const views::DropTargetEvent& event);
|
| virtual void OnDragExited();
|
| virtual int OnPerformDrop(const views::DropTargetEvent& event);
|
| + virtual bool GetAccessibleRole(AccessibilityTypes::Role* role);
|
| + virtual bool GetAccessibleName(std::wstring* name);
|
|
|
| // Overridden from views::ViewMenuDelegate:
|
| virtual void RunMenu(View* source, const gfx::Point& pt);
|
|
|