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

Side by Side Diff: base/process_util_unittest.cc

Issue 15735027: Use a direct include of utf_string_conversions.h in android_webview/, apps/, ash/, base/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
« no previous file with comments | « base/prefs/json_pref_store_unittest.cc ('k') | base/string16.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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"
11 #include "base/debug/stack_trace.h" 11 #include "base/debug/stack_trace.h"
12 #include "base/files/file_path.h" 12 #include "base/files/file_path.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "base/path_service.h" 15 #include "base/path_service.h"
16 #include "base/posix/eintr_wrapper.h" 16 #include "base/posix/eintr_wrapper.h"
17 #include "base/process_util.h" 17 #include "base/process_util.h"
18 #include "base/strings/utf_string_conversions.h"
18 #include "base/test/multiprocess_test.h" 19 #include "base/test/multiprocess_test.h"
19 #include "base/test/test_timeouts.h" 20 #include "base/test/test_timeouts.h"
20 #include "base/third_party/dynamic_annotations/dynamic_annotations.h" 21 #include "base/third_party/dynamic_annotations/dynamic_annotations.h"
21 #include "base/threading/platform_thread.h" 22 #include "base/threading/platform_thread.h"
22 #include "base/threading/thread.h" 23 #include "base/threading/thread.h"
23 #include "base/utf_string_conversions.h"
24 #include "testing/gtest/include/gtest/gtest.h" 24 #include "testing/gtest/include/gtest/gtest.h"
25 #include "testing/multiprocess_func_list.h" 25 #include "testing/multiprocess_func_list.h"
26 26
27 #if defined(OS_LINUX) 27 #if defined(OS_LINUX)
28 #include <glib.h> 28 #include <glib.h>
29 #include <malloc.h> 29 #include <malloc.h>
30 #include <sched.h> 30 #include <sched.h>
31 #endif 31 #endif
32 #if defined(OS_POSIX) 32 #if defined(OS_POSIX)
33 #include <dlfcn.h> 33 #include <dlfcn.h>
(...skipping 1251 matching lines...) Expand 10 before | Expand all | Expand 10 after
1285 SetUpInDeathAssert(); 1285 SetUpInDeathAssert();
1286 while ((value_ = base::AllocatePsychoticallyBigObjCObject())) {} 1286 while ((value_ = base::AllocatePsychoticallyBigObjCObject())) {}
1287 }, ""); 1287 }, "");
1288 } 1288 }
1289 1289
1290 #endif // !ARCH_CPU_64_BITS 1290 #endif // !ARCH_CPU_64_BITS
1291 #endif // OS_MACOSX 1291 #endif // OS_MACOSX
1292 1292
1293 #endif // !defined(OS_ANDROID) && !defined(OS_OPENBSD) && 1293 #endif // !defined(OS_ANDROID) && !defined(OS_OPENBSD) &&
1294 // !defined(OS_WIN) && !defined(ADDRESS_SANITIZER) 1294 // !defined(OS_WIN) && !defined(ADDRESS_SANITIZER)
OLDNEW
« no previous file with comments | « base/prefs/json_pref_store_unittest.cc ('k') | base/string16.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698