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

Side by Side Diff: base/process_util_mac.mm

Issue 16344006: Use a direct include of strings headers in 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/process_util_linux.cc ('k') | base/process_util_openbsd.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 #include "base/process_util.h" 5 #include "base/process_util.h"
6 6
7 #import <Cocoa/Cocoa.h> 7 #import <Cocoa/Cocoa.h>
8 #include <crt_externs.h> 8 #include <crt_externs.h>
9 #include <errno.h> 9 #include <errno.h>
10 #include <mach/mach.h> 10 #include <mach/mach.h>
(...skipping 15 matching lines...) Expand all
26 26
27 #include "base/debug/debugger.h" 27 #include "base/debug/debugger.h"
28 #include "base/file_util.h" 28 #include "base/file_util.h"
29 #include "base/hash_tables.h" 29 #include "base/hash_tables.h"
30 #include "base/lazy_instance.h" 30 #include "base/lazy_instance.h"
31 #include "base/logging.h" 31 #include "base/logging.h"
32 #include "base/mac/mac_util.h" 32 #include "base/mac/mac_util.h"
33 #include "base/mac/scoped_mach_port.h" 33 #include "base/mac/scoped_mach_port.h"
34 #include "base/posix/eintr_wrapper.h" 34 #include "base/posix/eintr_wrapper.h"
35 #include "base/scoped_clear_errno.h" 35 #include "base/scoped_clear_errno.h"
36 #include "base/string_util.h" 36 #include "base/strings/string_util.h"
37 #include "base/sys_info.h" 37 #include "base/sys_info.h"
38 #include "third_party/apple_apsl/CFBase.h" 38 #include "third_party/apple_apsl/CFBase.h"
39 #include "third_party/apple_apsl/malloc.h" 39 #include "third_party/apple_apsl/malloc.h"
40 40
41 #if ARCH_CPU_32_BITS 41 #if ARCH_CPU_32_BITS
42 #include <dlfcn.h> 42 #include <dlfcn.h>
43 #include <mach-o/nlist.h> 43 #include <mach-o/nlist.h>
44 44
45 #include "base/threading/thread_local.h" 45 #include "base/threading/thread_local.h"
46 #include "third_party/mach_override/mach_override.h" 46 #include "third_party/mach_override/mach_override.h"
(...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after
900 } 900 }
901 } 901 }
902 902
903 } // namespace 903 } // namespace
904 904
905 void EnsureProcessTerminated(ProcessHandle process) { 905 void EnsureProcessTerminated(ProcessHandle process) {
906 WaitForChildToDie(process, kWaitBeforeKillSeconds); 906 WaitForChildToDie(process, kWaitBeforeKillSeconds);
907 } 907 }
908 908
909 } // namespace base 909 } // namespace base
OLDNEW
« no previous file with comments | « base/process_util_linux.cc ('k') | base/process_util_openbsd.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698