HomeSort by relevance Sort by last modified time
    Searched refs:KioskAppLaunchError (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_app_launch_error.cc 23 std::string KioskAppLaunchError::GetErrorMessage(Error error) {
52 void KioskAppLaunchError::Save(KioskAppLaunchError::Error error) {
60 KioskAppLaunchError::Error KioskAppLaunchError::Get() {
67 return static_cast<KioskAppLaunchError::Error>(error);
69 return KioskAppLaunchError::NONE;
73 void KioskAppLaunchError::Clear() {
kiosk_app_launch_error.h 14 class KioskAppLaunchError {
44 DISALLOW_IMPLICIT_CONSTRUCTORS(KioskAppLaunchError);
kiosk_profile_loader.cc 31 KioskAppLaunchError::Error LoginFailureToKioskAppLaunchError(
36 return KioskAppLaunchError::UNABLE_TO_MOUNT;
38 return KioskAppLaunchError::UNABLE_TO_REMOVE;
40 return KioskAppLaunchError::UNABLE_TO_RETRIEVE_HASH;
43 return KioskAppLaunchError::UNABLE_TO_MOUNT;
79 ReportCheckResult(KioskAppLaunchError::CRYPTOHOMED_NOT_RUNNING);
96 ReportCheckResult(KioskAppLaunchError::NONE);
98 ReportCheckResult(KioskAppLaunchError::ALREADY_MOUNTED);
101 void ReportCheckResult(KioskAppLaunchError::Error error) {
102 if (error == KioskAppLaunchError::NONE
    [all...]
app_launch_utils.cc 46 virtual void OnLaunchFailed(KioskAppLaunchError::Error error) OVERRIDE {
47 KioskAppLaunchError::Save(error);
kiosk_profile_loader.h 32 virtual void OnProfileLoadFailed(KioskAppLaunchError::Error error) = 0;
51 void ReportLaunchResult(KioskAppLaunchError::Error error);
startup_app_launcher.h 48 virtual void OnLaunchFailed(KioskAppLaunchError::Error error) = 0;
78 void OnLaunchFailure(KioskAppLaunchError::Error error);
startup_app_launcher.cc 200 OnLaunchFailure(KioskAppLaunchError::NOT_KIOSK_ENABLED);
224 void StartupAppLauncher::OnLaunchFailure(KioskAppLaunchError::Error error) {
226 DCHECK_NE(KioskAppLaunchError::NONE, error);
278 OnLaunchFailure(KioskAppLaunchError::UNABLE_TO_INSTALL);
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
kiosk_app_menu_handler.cc 112 KioskAppLaunchError::Error error = KioskAppLaunchError::Get();
113 if (error == KioskAppLaunchError::NONE)
115 KioskAppLaunchError::Clear();
117 const std::string error_message = KioskAppLaunchError::GetErrorMessage(error);
  /external/chromium_org/chrome/browser/chromeos/login/
app_launch_controller.h 87 virtual void OnProfileLoadFailed(KioskAppLaunchError::Error error) OVERRIDE;
101 virtual void OnLaunchFailed(KioskAppLaunchError::Error error) OVERRIDE;
app_launch_controller.cc 192 OnLaunchFailed(KioskAppLaunchError::USER_CANCEL);
215 KioskAppLaunchError::Error error) {
357 void AppLaunchController::OnLaunchFailed(KioskAppLaunchError::Error error) {
359 DCHECK_NE(KioskAppLaunchError::NONE, error);
362 KioskAppLaunchError::Save(error);
kiosk_browsertest.cc 378 EXPECT_EQ(chromeos::KioskAppLaunchError::NONE,
379 chromeos::KioskAppLaunchError::Get());
614 EXPECT_EQ(chromeos::KioskAppLaunchError::USER_CANCEL,
615 chromeos::KioskAppLaunchError::Get());
    [all...]
  /external/chromium_org/chrome/browser/chromeos/
chrome_browser_main_chromeos.cc 188 KioskAppLaunchError::Get() == KioskAppLaunchError::NONE;

Completed in 117 milliseconds