| 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 "base/basictypes.h" | 7 #include "base/basictypes.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/prefs/pref_registry_simple.h" | 10 #include "base/prefs/pref_registry_simple.h" |
| (...skipping 1211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1222 // TODO(dzhioev): Add test emaulating device with wrong HWID. | 1222 // TODO(dzhioev): Add test emaulating device with wrong HWID. |
| 1223 | 1223 |
| 1224 // TODO(nkostylev): Add test for WebUI accelerators http://crosbug.com/22571 | 1224 // TODO(nkostylev): Add test for WebUI accelerators http://crosbug.com/22571 |
| 1225 | 1225 |
| 1226 // TODO(merkulova): Add tests for bluetooth HID detection screen variations when | 1226 // TODO(merkulova): Add tests for bluetooth HID detection screen variations when |
| 1227 // UI and logic is ready. http://crbug.com/127016 | 1227 // UI and logic is ready. http://crbug.com/127016 |
| 1228 | 1228 |
| 1229 // TODO(dzhioev): Add tests for controller/host pairing flow. | 1229 // TODO(dzhioev): Add tests for controller/host pairing flow. |
| 1230 // http://crbug.com/375191 | 1230 // http://crbug.com/375191 |
| 1231 | 1231 |
| 1232 COMPILE_ASSERT(BaseScreenDelegate::EXIT_CODES_COUNT == 24, | 1232 static_assert(BaseScreenDelegate::EXIT_CODES_COUNT == 24, |
| 1233 add_tests_for_new_control_flow_you_just_introduced); | 1233 "tests for new control flow are missing"); |
| 1234 | 1234 |
| 1235 } // namespace chromeos | 1235 } // namespace chromeos |
| OLD | NEW |