Commit fe45d475 authored by Sergey Poromov's avatar Sergey Poromov Committed by Commit Bot

Increase kiosk splash screen min time.

Increasing from 3 to 10 seconds as it now takes around
3 seconds to show the screen on the slow devices.
This is an easy temporary fix.
Perfectly, controller should start timer only when
splash screen is actually shown.

Bug: 890368

Change-Id: I2048a54c1df7f2474cc29eb1d00e06bac3ff1e7f
Reviewed-on: https://chromium-review.googlesource.com/c/1264635Reviewed-by: default avatarJacob Dufault <jdufault@chromium.org>
Commit-Queue: Sergey Poromov <poromov@chromium.org>
Cr-Commit-Position: refs/heads/master@{#597265}
parent af95efbf
...@@ -60,7 +60,7 @@ enum KioskLaunchType { ...@@ -60,7 +60,7 @@ enum KioskLaunchType {
}; };
// Application install splash screen minimum show time in milliseconds. // Application install splash screen minimum show time in milliseconds.
constexpr int kAppInstallSplashScreenMinTimeMS = 3000; constexpr int kAppInstallSplashScreenMinTimeMS = 10000;
// Parameters for test: // Parameters for test:
bool skip_splash_wait = false; bool skip_splash_wait = false;
......
...@@ -26,7 +26,7 @@ namespace chromeos { ...@@ -26,7 +26,7 @@ namespace chromeos {
// ARC Kiosk splash screen minimum show time. // ARC Kiosk splash screen minimum show time.
constexpr base::TimeDelta kArcKioskSplashScreenMinTime = constexpr base::TimeDelta kArcKioskSplashScreenMinTime =
base::TimeDelta::FromSeconds(3); base::TimeDelta::FromSeconds(10);
ArcKioskController::ArcKioskController(LoginDisplayHost* host, OobeUI* oobe_ui) ArcKioskController::ArcKioskController(LoginDisplayHost* host, OobeUI* oobe_ui)
: host_(host), : host_(host),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment