| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/eintr_wrapper.h" | 10 #include "base/eintr_wrapper.h" |
| 11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
| 12 #include "base/logging.h" |
| 12 #include "base/path_service.h" | 13 #include "base/path_service.h" |
| 13 #include "base/platform_thread.h" | 14 #include "base/platform_thread.h" |
| 14 #include "base/process_util.h" | 15 #include "base/process_util.h" |
| 15 #include "base/scoped_ptr.h" | 16 #include "base/scoped_ptr.h" |
| 16 #include "base/test/multiprocess_test.h" | 17 #include "base/test/multiprocess_test.h" |
| 17 #include "base/utf_string_conversions.h" | 18 #include "base/utf_string_conversions.h" |
| 18 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
| 19 #include "testing/multiprocess_func_list.h" | 20 #include "testing/multiprocess_func_list.h" |
| 20 | 21 |
| 21 #if defined(OS_LINUX) | 22 #if defined(OS_LINUX) |
| (...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 780 ASSERT_DEATH({ | 781 ASSERT_DEATH({ |
| 781 SetUpInDeathAssert(); | 782 SetUpInDeathAssert(); |
| 782 while ((value_ = base::AllocatePsychoticallyBigObjCObject())) {} | 783 while ((value_ = base::AllocatePsychoticallyBigObjCObject())) {} |
| 783 }, ""); | 784 }, ""); |
| 784 } | 785 } |
| 785 | 786 |
| 786 #endif // !ARCH_CPU_64_BITS | 787 #endif // !ARCH_CPU_64_BITS |
| 787 #endif // OS_MACOSX | 788 #endif // OS_MACOSX |
| 788 | 789 |
| 789 #endif // !defined(OS_WIN) | 790 #endif // !defined(OS_WIN) |
| OLD | NEW |