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

Unified Diff: chrome/browser/gtk/accessible_widget_helper_gtk.h

Issue 1585011: Add menu and menu item events to the accessibility extension api, and... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 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
Index: chrome/browser/gtk/accessible_widget_helper_gtk.h
===================================================================
--- chrome/browser/gtk/accessible_widget_helper_gtk.h (revision 43705)
+++ chrome/browser/gtk/accessible_widget_helper_gtk.h (working copy)
@@ -17,6 +17,10 @@
class Profile;
+// NOTE: This class is part of the Accessibility Extension API, which lets
+// extensions receive accessibility events. It's distinct from code that
+// implements platform accessibility APIs like MSAA or ATK.
+//
// Helper class that helps to manage the accessibility information for all
// of the widgets in a container. Create an instance of this class for
// each container GtkWidget (like a dialog) that should send accessibility
@@ -27,7 +31,7 @@
// widget or change its details.
//
// All of the information managed by this class is registered with the
-// (global) AccessibilityEventRouter and unregistered when this object is
+// (global) AccessibilityEventRouterGtk and unregistered when this object is
// destroyed.
class AccessibleWidgetHelper {
public:
@@ -55,7 +59,7 @@
void SetWidgetName(GtkWidget* widget, int string_id);
private:
- AccessibilityEventRouter* accessibility_event_router_;
+ AccessibilityEventRouterGtk* accessibility_event_router_;
Profile* profile_;
GtkWidget* root_widget_;
std::string window_title_;
« no previous file with comments | « chrome/browser/gtk/accessibility_event_router_gtk.cc ('k') | chrome/browser/gtk/accessible_widget_helper_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698