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/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 <stdlib.h> | 8 #include <stdlib.h> |
9 #include <sys/types.h> | 9 #include <sys/types.h> |
10 | 10 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 #include "chrome/browser/profiles/profile_manager.h" | 42 #include "chrome/browser/profiles/profile_manager.h" |
43 #include "chrome/browser/ui/options/options_util.h" | 43 #include "chrome/browser/ui/options/options_util.h" |
44 #include "chrome/common/chrome_notification_types.h" | 44 #include "chrome/common/chrome_notification_types.h" |
45 #include "chrome/common/pref_names.h" | 45 #include "chrome/common/pref_names.h" |
46 #include "content/public/browser/notification_service.h" | 46 #include "content/public/browser/notification_service.h" |
47 #include "content/public/browser/notification_types.h" | 47 #include "content/public/browser/notification_types.h" |
48 #include "ui/base/accelerators/accelerator.h" | 48 #include "ui/base/accelerators/accelerator.h" |
49 #include "ui/base/l10n/l10n_util.h" | 49 #include "ui/base/l10n/l10n_util.h" |
50 | 50 |
51 #if defined(USE_LINUX_BREAKPAD) | 51 #if defined(USE_LINUX_BREAKPAD) |
52 #include "chrome/app/breakpad_linuxish.h" | 52 #include "chrome/app/breakpad_linux.h" |
53 #endif | 53 #endif |
54 | 54 |
55 using content::BrowserThread; | 55 using content::BrowserThread; |
56 | 56 |
57 namespace { | 57 namespace { |
58 | 58 |
59 // A boolean pref of the EULA accepted flag. | 59 // A boolean pref of the EULA accepted flag. |
60 const char kEulaAccepted[] = "EulaAccepted"; | 60 const char kEulaAccepted[] = "EulaAccepted"; |
61 | 61 |
62 // A string pref with initial locale set in VPD or manifest. | 62 // A string pref with initial locale set in VPD or manifest. |
(...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
788 | 788 |
789 bool WizardController::GetUsageStatisticsReporting() const { | 789 bool WizardController::GetUsageStatisticsReporting() const { |
790 return usage_statistics_reporting_; | 790 return usage_statistics_reporting_; |
791 } | 791 } |
792 | 792 |
793 void WizardController::SetZeroDelays() { | 793 void WizardController::SetZeroDelays() { |
794 kShowDelayMs = 0; | 794 kShowDelayMs = 0; |
795 } | 795 } |
796 | 796 |
797 } // namespace chromeos | 797 } // namespace chromeos |
OLD | NEW |