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

Unified Diff: chrome/browser/ui/views/accessibility/accessibility_event_router_views.h

Issue 22922003: Remove notifications from Accessibility API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clean up Created 7 years, 4 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/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.

Powered by Google App Engine
This is Rietveld 408576698