Chromium Code Reviews| Index: chrome/browser/ui/views/accessibility/accessibility_event_router_views.h |
| diff --git a/chrome/browser/ui/views/accessibility/accessibility_event_router_views.h b/chrome/browser/ui/views/accessibility/accessibility_event_router_views.h |
| index 9bb3a2596bbf7aeab840b377c047823c5d0a7e6d..6b02a4ad2316bcde42819ba3654ec8973fcf8f4c 100644 |
| --- a/chrome/browser/ui/views/accessibility/accessibility_event_router_views.h |
| +++ b/chrome/browser/ui/views/accessibility/accessibility_event_router_views.h |
| @@ -73,51 +73,51 @@ class AccessibilityEventRouterViews : public content::NotificationObserver { |
| // Call DispatchAccessibilityNotification using a view storage id. |
| static void DispatchNotificationOnViewStorageId( |
|
dmazzoni
2013/08/14 19:36:37
How about renaming Notification -> Event to match
Cait (Slow)
2013/08/14 20:53:36
Done.
|
| int view_storage_id, |
| - chrome::NotificationType type); |
| + ui::AccessibilityTypes::Event type); |
| // Checks the type of the view and calls one of the more specific |
| // Send*Notification methods, below. |
| void DispatchAccessibilityNotification( |
| views::View* view, |
| - chrome::NotificationType type); |
| + ui::AccessibilityTypes::Event type); |
| // Each of these methods constructs an AccessibilityControlInfo object |
| // and sends a notification of a specific accessibility event. |
| static void SendButtonNotification( |
| views::View* view, |
| - int type, |
| + ui::AccessibilityTypes::Event type, |
| Profile* profile); |
| static void SendLinkNotification( |
| views::View* view, |
| - int type, |
| + ui::AccessibilityTypes::Event type, |
| Profile* profile); |
| static void SendMenuNotification( |
| views::View* view, |
| - int type, |
| + ui::AccessibilityTypes::Event type, |
| Profile* profile); |
| static void SendMenuItemNotification( |
| views::View* view, |
| - int type, |
| + ui::AccessibilityTypes::Event type, |
| Profile* profile); |
| static void SendTextfieldNotification( |
| views::View* view, |
| - int type, |
| + ui::AccessibilityTypes::Event type, |
| Profile* profile); |
| static void SendComboboxNotification( |
| views::View* view, |
| - int type, |
| + ui::AccessibilityTypes::Event type, |
| Profile* profile); |
| static void SendCheckboxNotification( |
| views::View* view, |
| - int type, |
| + ui::AccessibilityTypes::Event type, |
| Profile* profile); |
| static void SendWindowNotification( |
| views::View* view, |
| - int type, |
| + ui::AccessibilityTypes::Event type, |
| Profile* profile); |
| static void SendSliderNotification( |
| views::View* view, |
| - int type, |
| + ui::AccessibilityTypes::Event type, |
| Profile* profile); |
| // Return the name of a view. |