OLD | NEW |
1 // Copyright (c) 2011 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 #include "chrome/browser/chromeos/login/wizard_controller.h" | 5 #include "chrome/browser/chromeos/login/wizard_controller.h" |
6 | 6 |
7 #include <signal.h> | 7 #include <signal.h> |
8 #include <sys/types.h> | 8 #include <sys/types.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 22 matching lines...) Expand all Loading... |
33 #include "chrome/browser/chromeos/login/registration_screen.h" | 33 #include "chrome/browser/chromeos/login/registration_screen.h" |
34 #include "chrome/browser/chromeos/login/signed_settings_temp_storage.h" | 34 #include "chrome/browser/chromeos/login/signed_settings_temp_storage.h" |
35 #include "chrome/browser/chromeos/login/update_screen.h" | 35 #include "chrome/browser/chromeos/login/update_screen.h" |
36 #include "chrome/browser/chromeos/login/user_image_screen.h" | 36 #include "chrome/browser/chromeos/login/user_image_screen.h" |
37 #include "chrome/browser/chromeos/login/user_manager.h" | 37 #include "chrome/browser/chromeos/login/user_manager.h" |
38 #include "chrome/browser/chromeos/login/wizard_accessibility_helper.h" | 38 #include "chrome/browser/chromeos/login/wizard_accessibility_helper.h" |
39 #include "chrome/browser/prefs/pref_service.h" | 39 #include "chrome/browser/prefs/pref_service.h" |
40 #include "chrome/browser/profiles/profile_manager.h" | 40 #include "chrome/browser/profiles/profile_manager.h" |
41 #include "chrome/browser/ui/options/options_util.h" | 41 #include "chrome/browser/ui/options/options_util.h" |
42 #include "chrome/common/pref_names.h" | 42 #include "chrome/common/pref_names.h" |
43 #include "content/common/notification_service.h" | |
44 #include "content/public/browser/notification_types.h" | 43 #include "content/public/browser/notification_types.h" |
45 #include "ui/base/l10n/l10n_util.h" | 44 #include "ui/base/l10n/l10n_util.h" |
46 #include "views/accelerator.h" | 45 #include "views/accelerator.h" |
47 | 46 |
48 #if defined(USE_LINUX_BREAKPAD) | 47 #if defined(USE_LINUX_BREAKPAD) |
49 #include "chrome/app/breakpad_linux.h" | 48 #include "chrome/app/breakpad_linux.h" |
50 #endif | 49 #endif |
51 | 50 |
52 namespace { | 51 namespace { |
53 | 52 |
(...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
709 | 708 |
710 bool WizardController::usage_statistics_reporting() const { | 709 bool WizardController::usage_statistics_reporting() const { |
711 return usage_statistics_reporting_; | 710 return usage_statistics_reporting_; |
712 } | 711 } |
713 | 712 |
714 void WizardController::SetZeroDelays() { | 713 void WizardController::SetZeroDelays() { |
715 kShowDelayMs = 0; | 714 kShowDelayMs = 0; |
716 } | 715 } |
717 | 716 |
718 } // namespace chromeos | 717 } // namespace chromeos |
OLD | NEW |