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 #include "chrome/browser/chromeos/preferences.h" | 5 #include "chrome/browser/chromeos/preferences.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
| 9 #include "ash/accessibility_types.h" |
| 10 #include "ash/ash_constants.h" |
9 #include "ash/autoclick/autoclick_controller.h" | 11 #include "ash/autoclick/autoclick_controller.h" |
10 #include "ash/common/accessibility_types.h" | |
11 #include "ash/common/ash_constants.h" | |
12 #include "ash/common/wm_shell.h" | |
13 #include "ash/shell.h" | 12 #include "ash/shell.h" |
| 13 #include "ash/wm_shell.h" |
14 #include "base/command_line.h" | 14 #include "base/command_line.h" |
15 #include "base/i18n/time_formatting.h" | 15 #include "base/i18n/time_formatting.h" |
16 #include "base/metrics/histogram_macros.h" | 16 #include "base/metrics/histogram_macros.h" |
17 #include "base/strings/string_split.h" | 17 #include "base/strings/string_split.h" |
18 #include "base/strings/string_util.h" | 18 #include "base/strings/string_util.h" |
19 #include "base/strings/utf_string_conversions.h" | 19 #include "base/strings/utf_string_conversions.h" |
20 #include "chrome/browser/browser_process.h" | 20 #include "chrome/browser/browser_process.h" |
21 #include "chrome/browser/chrome_notification_types.h" | 21 #include "chrome/browser/chrome_notification_types.h" |
22 #include "chrome/browser/chromeos/accessibility/magnification_manager.h" | 22 #include "chrome/browser/chromeos/accessibility/magnification_manager.h" |
23 #include "chrome/browser/chromeos/drive/file_system_util.h" | 23 #include "chrome/browser/chromeos/drive/file_system_util.h" |
(...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
832 touch_hud_projection_enabled_.SetValue(enabled); | 832 touch_hud_projection_enabled_.SetValue(enabled); |
833 } | 833 } |
834 | 834 |
835 void Preferences::ActiveUserChanged(const user_manager::User* active_user) { | 835 void Preferences::ActiveUserChanged(const user_manager::User* active_user) { |
836 if (active_user != user_) | 836 if (active_user != user_) |
837 return; | 837 return; |
838 ApplyPreferences(REASON_ACTIVE_USER_CHANGED, ""); | 838 ApplyPreferences(REASON_ACTIVE_USER_CHANGED, ""); |
839 } | 839 } |
840 | 840 |
841 } // namespace chromeos | 841 } // namespace chromeos |
OLD | NEW |