| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/demo_mode/demo_app_launcher.h" | 5 #include "chrome/browser/chromeos/login/demo_mode/demo_app_launcher.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "chrome/browser/chromeos/app_mode/kiosk_app_manager.h" |
| 10 #include "chrome/browser/chromeos/login/ui/login_display_host.h" | 11 #include "chrome/browser/chromeos/login/ui/login_display_host.h" |
| 11 #include "chrome/browser/chromeos/login/ui/login_display_host_impl.h" | |
| 12 #include "chrome/browser/extensions/component_loader.h" | 12 #include "chrome/browser/extensions/component_loader.h" |
| 13 #include "chrome/browser/extensions/extension_service.h" | 13 #include "chrome/browser/extensions/extension_service.h" |
| 14 #include "chrome/browser/lifetime/application_lifetime.h" | 14 #include "chrome/browser/lifetime/application_lifetime.h" |
| 15 #include "chrome/browser/profiles/profile.h" | 15 #include "chrome/browser/profiles/profile.h" |
| 16 #include "chrome/browser/ui/extensions/app_launch_params.h" | 16 #include "chrome/browser/ui/extensions/app_launch_params.h" |
| 17 #include "chrome/browser/ui/extensions/application_launch.h" | 17 #include "chrome/browser/ui/extensions/application_launch.h" |
| 18 #include "chrome/common/chrome_switches.h" | 18 #include "chrome/common/chrome_switches.h" |
| 19 #include "chrome/common/extensions/extension_constants.h" | 19 #include "chrome/common/extensions/extension_constants.h" |
| 20 #include "chrome/grit/browser_resources.h" | 20 #include "chrome/grit/browser_resources.h" |
| 21 #include "chromeos/login/user_names.h" | 21 #include "chromeos/login/user_names.h" |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 false, | 94 false, |
| 95 chromeos::network_handler::ErrorCallback()); | 95 chromeos::network_handler::ErrorCallback()); |
| 96 | 96 |
| 97 OpenApplication( | 97 OpenApplication( |
| 98 AppLaunchParams(profile, extension, extensions::LAUNCH_CONTAINER_WINDOW, | 98 AppLaunchParams(profile, extension, extensions::LAUNCH_CONTAINER_WINDOW, |
| 99 NEW_WINDOW, extensions::SOURCE_CHROME_INTERNAL)); | 99 NEW_WINDOW, extensions::SOURCE_CHROME_INTERNAL)); |
| 100 KioskAppManager::Get()->InitSession(profile, extension_id); | 100 KioskAppManager::Get()->InitSession(profile, extension_id); |
| 101 | 101 |
| 102 user_manager::UserManager::Get()->SessionStarted(); | 102 user_manager::UserManager::Get()->SessionStarted(); |
| 103 | 103 |
| 104 LoginDisplayHostImpl::default_host()->Finalize(); | 104 LoginDisplayHost::default_host()->Finalize(); |
| 105 } | 105 } |
| 106 | 106 |
| 107 void DemoAppLauncher::OnProfileLoadFailed(KioskAppLaunchError::Error error) { | 107 void DemoAppLauncher::OnProfileLoadFailed(KioskAppLaunchError::Error error) { |
| 108 LOG(ERROR) << "Loading the Kiosk Profile failed: " << | 108 LOG(ERROR) << "Loading the Kiosk Profile failed: " << |
| 109 KioskAppLaunchError::GetErrorMessage(error); | 109 KioskAppLaunchError::GetErrorMessage(error); |
| 110 } | 110 } |
| 111 | 111 |
| 112 } // namespace chromeos | 112 } // namespace chromeos |
| OLD | NEW |