| 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/common/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" |
| (...skipping 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1330 // TODO(nkostylev): Add test for WebUI accelerators http://crosbug.com/22571 | 1330 // TODO(nkostylev): Add test for WebUI accelerators http://crosbug.com/22571 |
| 1331 | 1331 |
| 1332 // TODO(merkulova): Add tests for bluetooth HID detection screen variations when | 1332 // TODO(merkulova): Add tests for bluetooth HID detection screen variations when |
| 1333 // UI and logic is ready. http://crbug.com/127016 | 1333 // UI and logic is ready. http://crbug.com/127016 |
| 1334 | 1334 |
| 1335 // TODO(dzhioev): Add tests for controller/host pairing flow. | 1335 // TODO(dzhioev): Add tests for controller/host pairing flow. |
| 1336 // http://crbug.com/375191 | 1336 // http://crbug.com/375191 |
| 1337 | 1337 |
| 1338 // TODO(khmel): Add tests for ARC OptIn flow. | 1338 // TODO(khmel): Add tests for ARC OptIn flow. |
| 1339 // http://crbug.com/651144 | 1339 // http://crbug.com/651144 |
| 1340 static_assert(static_cast<int>(ScreenExitCode::EXIT_CODES_COUNT) == 25, | 1340 |
| 1341 // TODO(fukino): Add tests for encryption migration UI. |
| 1342 // http://crbug.com/706017 |
| 1343 static_assert(static_cast<int>(ScreenExitCode::EXIT_CODES_COUNT) == 27, |
| 1341 "tests for new control flow are missing"); | 1344 "tests for new control flow are missing"); |
| 1342 | 1345 |
| 1343 } // namespace chromeos | 1346 } // namespace chromeos |
| OLD | NEW |