Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(378)

Unified Diff: chrome/browser/chromeos/login/wizard_controller.cc

Issue 10808061: [cros] Flip enable-new-oobe switch. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/wizard_controller.cc
diff --git a/chrome/browser/chromeos/login/wizard_controller.cc b/chrome/browser/chromeos/login/wizard_controller.cc
index 25daa0b0b0fe6463b6a4c7d033d7960cb341e435..70deb032d6d922bed1ade467e84cd9bccd18624e 100644
--- a/chrome/browser/chromeos/login/wizard_controller.cc
+++ b/chrome/browser/chromeos/login/wizard_controller.cc
@@ -123,6 +123,9 @@ WizardController* WizardController::default_controller_ = NULL;
// static
bool WizardController::skip_user_image_selection_ = false;
+// static
+bool WizardController::zero_delay_enabled_ = false;
+
///////////////////////////////////////////////////////////////////////////////
// WizardController, public:
@@ -789,8 +792,15 @@ bool WizardController::GetUsageStatisticsReporting() const {
return usage_statistics_reporting_;
}
+// static
+bool WizardController::IsZeroDelayEnabled() {
+ return zero_delay_enabled_;
+}
+
+// static
void WizardController::SetZeroDelays() {
kShowDelayMs = 0;
+ zero_delay_enabled_ = true;
}
} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/login/wizard_controller.h ('k') | chrome/browser/chromeos/login/wizard_in_process_browser_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698