| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "base/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
| 7 #include "base/stringprintf.h" | 7 #include "base/strings/stringprintf.h" |
| 8 #include "chrome/browser/browser_process.h" | 8 #include "chrome/browser/browser_process.h" |
| 9 #include "chrome/browser/chrome_browser_main.h" | 9 #include "chrome/browser/chrome_browser_main.h" |
| 10 #include "chrome/browser/chrome_browser_main_extra_parts.h" | 10 #include "chrome/browser/chrome_browser_main_extra_parts.h" |
| 11 #include "chrome/browser/chrome_content_browser_client.h" | 11 #include "chrome/browser/chrome_content_browser_client.h" |
| 12 #include "chrome/browser/chromeos/app_mode/kiosk_app_launch_error.h" | 12 #include "chrome/browser/chromeos/app_mode/kiosk_app_launch_error.h" |
| 13 #include "chrome/browser/chromeos/app_mode/kiosk_app_manager.h" | 13 #include "chrome/browser/chromeos/app_mode/kiosk_app_manager.h" |
| 14 #include "chrome/browser/chromeos/cros/cros_in_process_browser_test.h" | 14 #include "chrome/browser/chromeos/cros/cros_in_process_browser_test.h" |
| 15 #include "chrome/browser/chromeos/login/existing_user_controller.h" | 15 #include "chrome/browser/chromeos/login/existing_user_controller.h" |
| 16 #include "chrome/browser/chromeos/login/login_display_host_impl.h" | 16 #include "chrome/browser/chromeos/login/login_display_host_impl.h" |
| 17 #include "chrome/browser/chromeos/login/webui_login_display.h" | 17 #include "chrome/browser/chromeos/login/webui_login_display.h" |
| (...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 591 testing::Bool()); | 591 testing::Bool()); |
| 592 | 592 |
| 593 INSTANTIATE_TEST_CASE_P(KioskAutolaunchCancelTestInstantiation, | 593 INSTANTIATE_TEST_CASE_P(KioskAutolaunchCancelTestInstantiation, |
| 594 KioskAutolaunchCancelTest, | 594 KioskAutolaunchCancelTest, |
| 595 testing::Bool()); | 595 testing::Bool()); |
| 596 | 596 |
| 597 INSTANTIATE_TEST_CASE_P(KioskAutolaunchConfirmTestInstantiation, | 597 INSTANTIATE_TEST_CASE_P(KioskAutolaunchConfirmTestInstantiation, |
| 598 KioskAutolaunchConfirmTest, | 598 KioskAutolaunchConfirmTest, |
| 599 testing::Bool()); | 599 testing::Bool()); |
| 600 } // namespace chromeos | 600 } // namespace chromeos |
| OLD | NEW |