| Index: chrome/browser/chromeos/app_mode/startup_app_launcher.cc
|
| ===================================================================
|
| --- chrome/browser/chromeos/app_mode/startup_app_launcher.cc (revision 227631)
|
| +++ chrome/browser/chromeos/app_mode/startup_app_launcher.cc (working copy)
|
| @@ -26,7 +26,7 @@
|
| #include "chrome/common/chrome_paths.h"
|
| #include "chrome/common/chrome_switches.h"
|
| #include "chrome/common/extensions/extension.h"
|
| -#include "chrome/common/extensions/manifest_handlers/kiosk_enabled_info.h"
|
| +#include "chrome/common/extensions/manifest_handlers/kiosk_mode_info.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/notification_service.h"
|
| #include "google_apis/gaia/gaia_auth_consumer.h"
|
| @@ -222,7 +222,7 @@
|
| extension_service()->GetInstalledExtension(app_id_);
|
| CHECK(extension);
|
|
|
| - if (!extensions::KioskEnabledInfo::IsKioskEnabled(extension)) {
|
| + if (!extensions::KioskModeInfo::IsKioskEnabled(extension)) {
|
| OnLaunchFailure(KioskAppLaunchError::NOT_KIOSK_ENABLED);
|
| return;
|
| }
|
|
|