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

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

Issue 7327007: Moving notification types which are chrome specific to a new header file chrome_notification_type... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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_event_router_views.h
===================================================================
--- chrome/browser/ui/views/accessibility_event_router_views.h (revision 91880)
+++ chrome/browser/ui/views/accessibility_event_router_views.h (working copy)
@@ -76,7 +76,7 @@
// Checks the type of the view and calls one of the more specific
// Send*Notification methods, below.
void DispatchAccessibilityNotification(
- views::View* view, NotificationType type);
+ views::View* view, int type);
// Return the name of a view.
std::string GetViewName(views::View* view);
@@ -84,24 +84,24 @@
// Each of these methods constructs an AccessibilityControlInfo object
// and sends a notification of a specific accessibility event.
void SendButtonNotification(
- views::View* view, NotificationType type, Profile* profile);
+ views::View* view, int type, Profile* profile);
void SendLinkNotification(
- views::View* view, NotificationType type, Profile* profile);
+ views::View* view, int type, Profile* profile);
void SendMenuNotification(
- views::View* view, NotificationType type, Profile* profile);
+ views::View* view, int type, Profile* profile);
void SendMenuItemNotification(
- views::View* view, NotificationType type, Profile* profile);
+ views::View* view, int type, Profile* profile);
void SendLocationBarNotification(
- views::View* view, NotificationType type, Profile* profile);
+ views::View* view, int type, Profile* profile);
void SendTextfieldNotification(
- views::View* view, NotificationType type, Profile* profile);
+ views::View* view, int type, Profile* profile);
void SendComboboxNotification(
- views::View* view, NotificationType type, Profile* profile);
+ views::View* view, int type, Profile* profile);
void SendCheckboxNotification(
- views::View* view, NotificationType type, Profile* profile);
+ views::View* view, int type, Profile* profile);
// Return true if it's an event on a menu.
- bool IsMenuEvent(views::View* view, NotificationType type);
+ bool IsMenuEvent(views::View* view, int type);
// Recursively explore all menu items of |menu| and return in |count|
// the total number of items, and in |index| the 0-based index of

Powered by Google App Engine
This is Rietveld 408576698