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" |
11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
12 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
13 #include "chrome/browser/accessibility/accessibility_events.h" | 13 #include "chrome/browser/accessibility/accessibility_events.h" |
14 #include "chrome/common/chrome_notification_types.h" | 14 #include "chrome/browser/chrome_notification_types.h" |
15 #include "content/public/browser/notification_observer.h" | 15 #include "content/public/browser/notification_observer.h" |
16 #include "content/public/browser/notification_registrar.h" | 16 #include "content/public/browser/notification_registrar.h" |
17 #include "ui/base/accessibility/accessibility_types.h" | 17 #include "ui/base/accessibility/accessibility_types.h" |
18 | 18 |
19 class Profile; | 19 class Profile; |
20 | 20 |
21 template <typename T> struct DefaultSingletonTraits; | 21 template <typename T> struct DefaultSingletonTraits; |
22 | 22 |
23 namespace views { | 23 namespace views { |
24 class View; | 24 class View; |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 Profile* most_recent_profile_; | 155 Profile* most_recent_profile_; |
156 | 156 |
157 // Notification registrar so we can clear most_recent_profile_ when a | 157 // Notification registrar so we can clear most_recent_profile_ when a |
158 // profile is destroyed. | 158 // profile is destroyed. |
159 content::NotificationRegistrar registrar_; | 159 content::NotificationRegistrar registrar_; |
160 | 160 |
161 DISALLOW_COPY_AND_ASSIGN(AccessibilityEventRouterViews); | 161 DISALLOW_COPY_AND_ASSIGN(AccessibilityEventRouterViews); |
162 }; | 162 }; |
163 | 163 |
164 #endif // CHROME_BROWSER_UI_VIEWS_ACCESSIBILITY_ACCESSIBILITY_EVENT_ROUTER_VIEW
S_H_ | 164 #endif // CHROME_BROWSER_UI_VIEWS_ACCESSIBILITY_ACCESSIBILITY_EVENT_ROUTER_VIEW
S_H_ |
OLD | NEW |