OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_VIEWS_ACCESSIBILITY_ACCESSIBILITY_EVENT_ROUTER_VIEWS_H
_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_ACCESSIBILITY_ACCESSIBILITY_EVENT_ROUTER_VIEWS_H
_ |
6 #define CHROME_BROWSER_UI_VIEWS_ACCESSIBILITY_ACCESSIBILITY_EVENT_ROUTER_VIEWS_H
_ | 6 #define CHROME_BROWSER_UI_VIEWS_ACCESSIBILITY_ACCESSIBILITY_EVENT_ROUTER_VIEWS_H
_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 ui::AccessibilityTypes::Event event, | 93 ui::AccessibilityTypes::Event event, |
94 Profile* profile); | 94 Profile* profile); |
95 static void SendMenuNotification( | 95 static void SendMenuNotification( |
96 views::View* view, | 96 views::View* view, |
97 ui::AccessibilityTypes::Event event, | 97 ui::AccessibilityTypes::Event event, |
98 Profile* profile); | 98 Profile* profile); |
99 static void SendMenuItemNotification( | 99 static void SendMenuItemNotification( |
100 views::View* view, | 100 views::View* view, |
101 ui::AccessibilityTypes::Event event, | 101 ui::AccessibilityTypes::Event event, |
102 Profile* profile); | 102 Profile* profile); |
| 103 static void SendTreeNotification( |
| 104 views::View* view, |
| 105 ui::AccessibilityTypes::Event event, |
| 106 Profile* profile); |
| 107 static void SendTreeItemNotification( |
| 108 views::View* view, |
| 109 ui::AccessibilityTypes::Event event, |
| 110 Profile* profile); |
103 static void SendTextfieldNotification( | 111 static void SendTextfieldNotification( |
104 views::View* view, | 112 views::View* view, |
105 ui::AccessibilityTypes::Event event, | 113 ui::AccessibilityTypes::Event event, |
106 Profile* profile); | 114 Profile* profile); |
107 static void SendComboboxNotification( | 115 static void SendComboboxNotification( |
108 views::View* view, | 116 views::View* view, |
109 ui::AccessibilityTypes::Event event, | 117 ui::AccessibilityTypes::Event event, |
110 Profile* profile); | 118 Profile* profile); |
111 static void SendCheckboxNotification( | 119 static void SendCheckboxNotification( |
112 views::View* view, | 120 views::View* view, |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 Profile* most_recent_profile_; | 164 Profile* most_recent_profile_; |
157 | 165 |
158 // Notification registrar so we can clear most_recent_profile_ when a | 166 // Notification registrar so we can clear most_recent_profile_ when a |
159 // profile is destroyed. | 167 // profile is destroyed. |
160 content::NotificationRegistrar registrar_; | 168 content::NotificationRegistrar registrar_; |
161 | 169 |
162 DISALLOW_COPY_AND_ASSIGN(AccessibilityEventRouterViews); | 170 DISALLOW_COPY_AND_ASSIGN(AccessibilityEventRouterViews); |
163 }; | 171 }; |
164 | 172 |
165 #endif // CHROME_BROWSER_UI_VIEWS_ACCESSIBILITY_ACCESSIBILITY_EVENT_ROUTER_VIEW
S_H_ | 173 #endif // CHROME_BROWSER_UI_VIEWS_ACCESSIBILITY_ACCESSIBILITY_EVENT_ROUTER_VIEW
S_H_ |
OLD | NEW |