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

Unified Diff: chrome/browser/views/accessible_view_helper.h

Issue 2811023: Make the location bar generate accessibility extension API events... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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 | « chrome/browser/gtk/accessible_widget_helper_gtk.cc ('k') | chrome/browser/views/accessible_view_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/accessible_view_helper.h
===================================================================
--- chrome/browser/views/accessible_view_helper.h (revision 51112)
+++ chrome/browser/views/accessible_view_helper.h (working copy)
@@ -9,10 +9,15 @@
#include <vector>
#include "base/basictypes.h"
+#include "base/scoped_ptr.h"
#include "base/singleton.h"
#include "chrome/browser/accessibility_events.h"
#include "chrome/browser/views/accessibility_event_router_views.h"
+#if defined(OS_LINUX)
+#include "chrome/browser/gtk/accessible_widget_helper_gtk.h"
+#endif
+
class Profile;
// NOTE: This class is part of the Accessibility Extension API, which lets
@@ -63,6 +68,10 @@
std::string window_title_;
std::vector<views::View*> managed_views_;
+#if defined(OS_LINUX)
+ scoped_ptr<AccessibleWidgetHelper> widget_helper_;
+#endif
+
DISALLOW_COPY_AND_ASSIGN(AccessibleViewHelper);
};
« no previous file with comments | « chrome/browser/gtk/accessible_widget_helper_gtk.cc ('k') | chrome/browser/views/accessible_view_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698