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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 ui::AccessibilityTypes::Event event, | 91 ui::AccessibilityTypes::Event event, |
92 Profile* profile); | 92 Profile* profile); |
93 static void SendMenuNotification( | 93 static void SendMenuNotification( |
94 views::View* view, | 94 views::View* view, |
95 ui::AccessibilityTypes::Event event, | 95 ui::AccessibilityTypes::Event event, |
96 Profile* profile); | 96 Profile* profile); |
97 static void SendMenuItemNotification( | 97 static void SendMenuItemNotification( |
98 views::View* view, | 98 views::View* view, |
99 ui::AccessibilityTypes::Event event, | 99 ui::AccessibilityTypes::Event event, |
100 Profile* profile); | 100 Profile* profile); |
| 101 static void SendTreeItemNotification( |
| 102 views::View* view, |
| 103 ui::AccessibilityTypes::Event event, |
| 104 Profile* profile); |
101 static void SendTextfieldNotification( | 105 static void SendTextfieldNotification( |
102 views::View* view, | 106 views::View* view, |
103 ui::AccessibilityTypes::Event event, | 107 ui::AccessibilityTypes::Event event, |
104 Profile* profile); | 108 Profile* profile); |
105 static void SendComboboxNotification( | 109 static void SendComboboxNotification( |
106 views::View* view, | 110 views::View* view, |
107 ui::AccessibilityTypes::Event event, | 111 ui::AccessibilityTypes::Event event, |
108 Profile* profile); | 112 Profile* profile); |
109 static void SendCheckboxNotification( | 113 static void SendCheckboxNotification( |
110 views::View* view, | 114 views::View* view, |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 Profile* most_recent_profile_; | 158 Profile* most_recent_profile_; |
155 | 159 |
156 // Notification registrar so we can clear most_recent_profile_ when a | 160 // Notification registrar so we can clear most_recent_profile_ when a |
157 // profile is destroyed. | 161 // profile is destroyed. |
158 content::NotificationRegistrar registrar_; | 162 content::NotificationRegistrar registrar_; |
159 | 163 |
160 DISALLOW_COPY_AND_ASSIGN(AccessibilityEventRouterViews); | 164 DISALLOW_COPY_AND_ASSIGN(AccessibilityEventRouterViews); |
161 }; | 165 }; |
162 | 166 |
163 #endif // CHROME_BROWSER_UI_VIEWS_ACCESSIBILITY_ACCESSIBILITY_EVENT_ROUTER_VIEW
S_H_ | 167 #endif // CHROME_BROWSER_UI_VIEWS_ACCESSIBILITY_ACCESSIBILITY_EVENT_ROUTER_VIEW
S_H_ |
OLD | NEW |