| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "chrome/browser/chromeos/login/wizard_accessibility_helper.h" | 5 #include "chrome/browser/chromeos/login/wizard_accessibility_helper.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/stl_util-inl.h" | 8 #include "base/stl_util-inl.h" |
| 9 #include "chrome/browser/browser_process.h" | 9 #include "chrome/browser/browser_process.h" |
| 10 #include "chrome/browser/extensions/extension_accessibility_api.h" | 10 #include "chrome/browser/extensions/extension_accessibility_api.h" |
| 11 #include "chrome/browser/prefs/pref_service.h" | 11 #include "chrome/browser/prefs/pref_service.h" |
| 12 #include "chrome/browser/profile.h" | 12 #include "chrome/browser/profiles/profile.h" |
| 13 #include "chrome/browser/profile_manager.h" | 13 #include "chrome/browser/profiles/profile_manager.h" |
| 14 #include "chrome/common/notification_registrar.h" | 14 #include "chrome/common/notification_registrar.h" |
| 15 #include "chrome/common/notification_service.h" | 15 #include "chrome/common/notification_service.h" |
| 16 #include "chrome/common/pref_names.h" | 16 #include "chrome/common/pref_names.h" |
| 17 #include "views/accelerator.h" | 17 #include "views/accelerator.h" |
| 18 #include "views/view.h" | 18 #include "views/view.h" |
| 19 | 19 |
| 20 namespace chromeos { | 20 namespace chromeos { |
| 21 | 21 |
| 22 scoped_ptr<views::Accelerator> WizardAccessibilityHelper::accelerator_; | 22 scoped_ptr<views::Accelerator> WizardAccessibilityHelper::accelerator_; |
| 23 | 23 |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 if ((*iter).first == view_tree) { | 129 if ((*iter).first == view_tree) { |
| 130 view_exists = true; | 130 view_exists = true; |
| 131 break; | 131 break; |
| 132 } | 132 } |
| 133 } | 133 } |
| 134 if (!view_exists) | 134 if (!view_exists) |
| 135 views_buffer_[view_tree] = false; | 135 views_buffer_[view_tree] = false; |
| 136 } | 136 } |
| 137 | 137 |
| 138 } // namespace chromeos | 138 } // namespace chromeos |
| OLD | NEW |