Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(658)

Side by Side Diff: base/process_util_unittest.cc

Issue 6714032: Move some files in base to base/memory. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: only base Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/logging.h"
13 #include "base/path_service.h" 13 #include "base/path_service.h"
14 #include "base/process_util.h" 14 #include "base/process_util.h"
15 #include "base/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
16 #include "base/test/multiprocess_test.h" 16 #include "base/test/multiprocess_test.h"
17 #include "base/test/test_timeouts.h" 17 #include "base/test/test_timeouts.h"
18 #include "base/threading/platform_thread.h" 18 #include "base/threading/platform_thread.h"
19 #include "base/utf_string_conversions.h" 19 #include "base/utf_string_conversions.h"
20 #include "testing/gtest/include/gtest/gtest.h" 20 #include "testing/gtest/include/gtest/gtest.h"
21 #include "testing/multiprocess_func_list.h" 21 #include "testing/multiprocess_func_list.h"
22 22
23 #if defined(OS_LINUX) 23 #if defined(OS_LINUX)
24 #include <errno.h> 24 #include <errno.h>
25 #include <malloc.h> 25 #include <malloc.h>
(...skipping 895 matching lines...) Expand 10 before | Expand all | Expand 10 after
921 ASSERT_DEATH({ 921 ASSERT_DEATH({
922 SetUpInDeathAssert(); 922 SetUpInDeathAssert();
923 while ((value_ = base::AllocatePsychoticallyBigObjCObject())) {} 923 while ((value_ = base::AllocatePsychoticallyBigObjCObject())) {}
924 }, ""); 924 }, "");
925 } 925 }
926 926
927 #endif // !ARCH_CPU_64_BITS 927 #endif // !ARCH_CPU_64_BITS
928 #endif // OS_MACOSX 928 #endif // OS_MACOSX
929 929
930 #endif // !defined(OS_WIN) 930 #endif // !defined(OS_WIN)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698