| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 ui::AXEvent event, | 89 ui::AXEvent event, |
| 90 Profile* profile); | 90 Profile* profile); |
| 91 static void SendLinkNotification( | 91 static void SendLinkNotification( |
| 92 views::View* view, | 92 views::View* view, |
| 93 ui::AXEvent event, | 93 ui::AXEvent 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::AXEvent event, | 97 ui::AXEvent event, |
| 98 Profile* profile); | 98 Profile* profile); |
| 99 static void SendTabNotification( |
| 100 views::View* view, |
| 101 ui::AXEvent event, |
| 102 Profile* profile); |
| 99 static void SendMenuItemNotification( | 103 static void SendMenuItemNotification( |
| 100 views::View* view, | 104 views::View* view, |
| 101 ui::AXEvent event, | 105 ui::AXEvent event, |
| 102 Profile* profile); | 106 Profile* profile); |
| 103 static void SendTreeNotification( | 107 static void SendTreeNotification( |
| 104 views::View* view, | 108 views::View* view, |
| 105 ui::AXEvent event, | 109 ui::AXEvent event, |
| 106 Profile* profile); | 110 Profile* profile); |
| 107 static void SendTreeItemNotification( | 111 static void SendTreeItemNotification( |
| 108 views::View* view, | 112 views::View* view, |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 Profile* most_recent_profile_; | 168 Profile* most_recent_profile_; |
| 165 | 169 |
| 166 // Notification registrar so we can clear most_recent_profile_ when a | 170 // Notification registrar so we can clear most_recent_profile_ when a |
| 167 // profile is destroyed. | 171 // profile is destroyed. |
| 168 content::NotificationRegistrar registrar_; | 172 content::NotificationRegistrar registrar_; |
| 169 | 173 |
| 170 DISALLOW_COPY_AND_ASSIGN(AccessibilityEventRouterViews); | 174 DISALLOW_COPY_AND_ASSIGN(AccessibilityEventRouterViews); |
| 171 }; | 175 }; |
| 172 | 176 |
| 173 #endif // CHROME_BROWSER_UI_VIEWS_ACCESSIBILITY_ACCESSIBILITY_EVENT_ROUTER_VIEW
S_H_ | 177 #endif // CHROME_BROWSER_UI_VIEWS_ACCESSIBILITY_ACCESSIBILITY_EVENT_ROUTER_VIEW
S_H_ |
| OLD | NEW |