| 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 #define _CRT_SECURE_NO_WARNINGS | 5 #define _CRT_SECURE_NO_WARNINGS |
| 6 | 6 |
| 7 #include <limits> | 7 #include <limits> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/debug/alias.h" | 10 #include "base/debug/alias.h" |
| (...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 948 // Check that process was really killed. | 948 // Check that process was really killed. |
| 949 EXPECT_TRUE(IsProcessDead(child_process)); | 949 EXPECT_TRUE(IsProcessDead(child_process)); |
| 950 base::CloseProcessHandle(child_process); | 950 base::CloseProcessHandle(child_process); |
| 951 } | 951 } |
| 952 | 952 |
| 953 MULTIPROCESS_TEST_MAIN(process_util_test_die_immediately) { | 953 MULTIPROCESS_TEST_MAIN(process_util_test_die_immediately) { |
| 954 return 0; | 954 return 0; |
| 955 } | 955 } |
| 956 | 956 |
| 957 #endif // defined(OS_POSIX) | 957 #endif // defined(OS_POSIX) |
| OLD | NEW |