OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_CHROMEOS_LOGIN_WIZARD_ACCESSIBILITY_HELPER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_ACCESSIBILITY_HELPER_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_ACCESSIBILITY_HELPER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_ACCESSIBILITY_HELPER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "app/keyboard_codes.h" | 12 #include "app/keyboard_codes.h" |
13 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
14 #include "base/singleton.h" | 14 #include "base/singleton.h" |
15 #include "chrome/browser/chromeos/login/wizard_accessibility_handler.h" | 15 #include "chrome/browser/chromeos/login/wizard_accessibility_handler.h" |
16 #include "chrome/browser/views/accessible_view_helper.h" | 16 #include "chrome/browser/ui/views/accessible_view_helper.h" |
17 #include "chrome/common/notification_registrar.h" | 17 #include "chrome/common/notification_registrar.h" |
18 | 18 |
19 class Profile; | 19 class Profile; |
20 namespace views { | 20 namespace views { |
21 class Accelerator; | 21 class Accelerator; |
22 class View; | 22 class View; |
23 } | 23 } |
24 | 24 |
25 namespace chromeos { | 25 namespace chromeos { |
26 | 26 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 NotificationRegistrar registrar_; | 88 NotificationRegistrar registrar_; |
89 | 89 |
90 bool registered_notifications_; | 90 bool registered_notifications_; |
91 | 91 |
92 DISALLOW_COPY_AND_ASSIGN(WizardAccessibilityHelper); | 92 DISALLOW_COPY_AND_ASSIGN(WizardAccessibilityHelper); |
93 }; | 93 }; |
94 | 94 |
95 } // namespace chromeos | 95 } // namespace chromeos |
96 | 96 |
97 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_ACCESSIBILITY_HELPER_H_ | 97 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_ACCESSIBILITY_HELPER_H_ |
OLD | NEW |