OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/wizard_controller.h" | 5 #include "chrome/browser/chromeos/login/wizard_controller.h" |
6 | 6 |
7 #include "ash/common/accessibility_types.h" | 7 #include "ash/accessibility_types.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/run_loop.h" | 11 #include "base/run_loop.h" |
12 #include "base/strings/string_util.h" | 12 #include "base/strings/string_util.h" |
13 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
14 #include "chrome/browser/browser_process.h" | 14 #include "chrome/browser/browser_process.h" |
15 #include "chrome/browser/browser_shutdown.h" | 15 #include "chrome/browser/browser_shutdown.h" |
16 #include "chrome/browser/chrome_notification_types.h" | 16 #include "chrome/browser/chrome_notification_types.h" |
17 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" | 17 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" |
(...skipping 1311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1329 | 1329 |
1330 // TODO(dzhioev): Add tests for controller/host pairing flow. | 1330 // TODO(dzhioev): Add tests for controller/host pairing flow. |
1331 // http://crbug.com/375191 | 1331 // http://crbug.com/375191 |
1332 | 1332 |
1333 // TODO(khmel): Add tests for ARC OptIn flow. | 1333 // TODO(khmel): Add tests for ARC OptIn flow. |
1334 // http://crbug.com/651144 | 1334 // http://crbug.com/651144 |
1335 static_assert(static_cast<int>(ScreenExitCode::EXIT_CODES_COUNT) == 25, | 1335 static_assert(static_cast<int>(ScreenExitCode::EXIT_CODES_COUNT) == 25, |
1336 "tests for new control flow are missing"); | 1336 "tests for new control flow are missing"); |
1337 | 1337 |
1338 } // namespace chromeos | 1338 } // namespace chromeos |
OLD | NEW |