| 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 <gdk/gdk.h> | 7 #include <gdk/gdk.h> |
| 8 #include <signal.h> | 8 #include <signal.h> |
| 9 #include <sys/types.h> | 9 #include <sys/types.h> |
| 10 | 10 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 #include "chrome/browser/chromeos/login/oobe_display.h" | 31 #include "chrome/browser/chromeos/login/oobe_display.h" |
| 32 #include "chrome/browser/chromeos/login/registration_screen.h" | 32 #include "chrome/browser/chromeos/login/registration_screen.h" |
| 33 #include "chrome/browser/chromeos/login/update_screen.h" | 33 #include "chrome/browser/chromeos/login/update_screen.h" |
| 34 #include "chrome/browser/chromeos/login/user_image_screen.h" | 34 #include "chrome/browser/chromeos/login/user_image_screen.h" |
| 35 #include "chrome/browser/chromeos/login/user_manager.h" | 35 #include "chrome/browser/chromeos/login/user_manager.h" |
| 36 #include "chrome/browser/chromeos/login/wizard_accessibility_helper.h" | 36 #include "chrome/browser/chromeos/login/wizard_accessibility_helper.h" |
| 37 #include "chrome/browser/chromeos/metrics_cros_settings_provider.h" | 37 #include "chrome/browser/chromeos/metrics_cros_settings_provider.h" |
| 38 #include "chrome/browser/prefs/pref_service.h" | 38 #include "chrome/browser/prefs/pref_service.h" |
| 39 #include "chrome/browser/profiles/profile_manager.h" | 39 #include "chrome/browser/profiles/profile_manager.h" |
| 40 #include "chrome/common/pref_names.h" | 40 #include "chrome/common/pref_names.h" |
| 41 #include "content/common/content_notification_types.h" |
| 41 #include "content/common/notification_service.h" | 42 #include "content/common/notification_service.h" |
| 42 #include "content/common/notification_type.h" | |
| 43 #include "ui/base/l10n/l10n_util.h" | 43 #include "ui/base/l10n/l10n_util.h" |
| 44 #include "views/accelerator.h" | 44 #include "views/accelerator.h" |
| 45 | 45 |
| 46 namespace { | 46 namespace { |
| 47 | 47 |
| 48 // A boolean pref of the EULA accepted flag. | 48 // A boolean pref of the EULA accepted flag. |
| 49 const char kEulaAccepted[] = "EulaAccepted"; | 49 const char kEulaAccepted[] = "EulaAccepted"; |
| 50 | 50 |
| 51 // A string pref with initial locale set in VPD or manifest. | 51 // A string pref with initial locale set in VPD or manifest. |
| 52 const char kInitialLocale[] = "intl.initial_locale"; | 52 const char kInitialLocale[] = "intl.initial_locale"; |
| (...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 | 677 |
| 678 bool WizardController::usage_statistics_reporting() const { | 678 bool WizardController::usage_statistics_reporting() const { |
| 679 return usage_statistics_reporting_; | 679 return usage_statistics_reporting_; |
| 680 } | 680 } |
| 681 | 681 |
| 682 void WizardController::SetZeroDelays() { | 682 void WizardController::SetZeroDelays() { |
| 683 kShowDelayMs = 0; | 683 kShowDelayMs = 0; |
| 684 } | 684 } |
| 685 | 685 |
| 686 } // namespace chromeos | 686 } // namespace chromeos |
| OLD | NEW |