| 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 25 matching lines...) Expand all Loading... |
| 36 #include "chrome/browser/chromeos/login/update_screen.h" | 36 #include "chrome/browser/chromeos/login/update_screen.h" |
| 37 #include "chrome/browser/chromeos/login/user_image_screen.h" | 37 #include "chrome/browser/chromeos/login/user_image_screen.h" |
| 38 #include "chrome/browser/chromeos/login/user_manager.h" | 38 #include "chrome/browser/chromeos/login/user_manager.h" |
| 39 #include "chrome/browser/chromeos/settings/cros_settings.h" | 39 #include "chrome/browser/chromeos/settings/cros_settings.h" |
| 40 #include "chrome/browser/chromeos/settings/cros_settings_names.h" | 40 #include "chrome/browser/chromeos/settings/cros_settings_names.h" |
| 41 #include "chrome/browser/prefs/pref_service.h" | 41 #include "chrome/browser/prefs/pref_service.h" |
| 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/browser_thread.h" |
| 46 #include "content/public/browser/notification_service.h" | 47 #include "content/public/browser/notification_service.h" |
| 47 #include "content/public/browser/notification_types.h" | 48 #include "content/public/browser/notification_types.h" |
| 48 #include "ui/base/accelerators/accelerator.h" | 49 #include "ui/base/accelerators/accelerator.h" |
| 49 #include "ui/base/l10n/l10n_util.h" | 50 #include "ui/base/l10n/l10n_util.h" |
| 50 | 51 |
| 51 #if defined(USE_LINUX_BREAKPAD) | 52 #if defined(USE_LINUX_BREAKPAD) |
| 52 #include "chrome/app/breakpad_linux.h" | 53 #include "chrome/app/breakpad_linux.h" |
| 53 #endif | 54 #endif |
| 54 | 55 |
| 55 using content::BrowserThread; | 56 using content::BrowserThread; |
| (...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 797 return zero_delay_enabled_; | 798 return zero_delay_enabled_; |
| 798 } | 799 } |
| 799 | 800 |
| 800 // static | 801 // static |
| 801 void WizardController::SetZeroDelays() { | 802 void WizardController::SetZeroDelays() { |
| 802 kShowDelayMs = 0; | 803 kShowDelayMs = 0; |
| 803 zero_delay_enabled_ = true; | 804 zero_delay_enabled_ = true; |
| 804 } | 805 } |
| 805 | 806 |
| 806 } // namespace chromeos | 807 } // namespace chromeos |
| OLD | NEW |