| 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 #include "base/files/file_util.h" | 5 #include "base/files/file_util.h" |
| 6 | 6 |
| 7 #include <dirent.h> | 7 #include <dirent.h> |
| 8 #include <errno.h> | 8 #include <errno.h> |
| 9 #include <fcntl.h> | 9 #include <fcntl.h> |
| 10 #include <libgen.h> | 10 #include <libgen.h> |
| 11 #include <limits.h> | 11 #include <limits.h> |
| 12 #include <stddef.h> |
| 12 #include <stdio.h> | 13 #include <stdio.h> |
| 13 #include <stdlib.h> | 14 #include <stdlib.h> |
| 14 #include <string.h> | 15 #include <string.h> |
| 15 #include <sys/errno.h> | 16 #include <sys/errno.h> |
| 16 #include <sys/mman.h> | 17 #include <sys/mman.h> |
| 17 #include <sys/param.h> | 18 #include <sys/param.h> |
| 18 #include <sys/stat.h> | 19 #include <sys/stat.h> |
| 19 #include <sys/time.h> | 20 #include <sys/time.h> |
| 20 #include <sys/types.h> | 21 #include <sys/types.h> |
| 21 #include <time.h> | 22 #include <time.h> |
| 22 #include <unistd.h> | 23 #include <unistd.h> |
| 23 | 24 |
| 24 #if defined(OS_MACOSX) | |
| 25 #include <AvailabilityMacros.h> | |
| 26 #include "base/mac/foundation_util.h" | |
| 27 #endif | |
| 28 | |
| 29 #include "base/basictypes.h" | |
| 30 #include "base/files/file_enumerator.h" | 25 #include "base/files/file_enumerator.h" |
| 31 #include "base/files/file_path.h" | 26 #include "base/files/file_path.h" |
| 32 #include "base/files/scoped_file.h" | 27 #include "base/files/scoped_file.h" |
| 33 #include "base/logging.h" | 28 #include "base/logging.h" |
| 29 #include "base/macros.h" |
| 34 #include "base/memory/scoped_ptr.h" | 30 #include "base/memory/scoped_ptr.h" |
| 35 #include "base/memory/singleton.h" | 31 #include "base/memory/singleton.h" |
| 36 #include "base/path_service.h" | 32 #include "base/path_service.h" |
| 37 #include "base/posix/eintr_wrapper.h" | 33 #include "base/posix/eintr_wrapper.h" |
| 38 #include "base/stl_util.h" | 34 #include "base/stl_util.h" |
| 39 #include "base/strings/string_util.h" | 35 #include "base/strings/string_util.h" |
| 40 #include "base/strings/stringprintf.h" | 36 #include "base/strings/stringprintf.h" |
| 41 #include "base/strings/sys_string_conversions.h" | 37 #include "base/strings/sys_string_conversions.h" |
| 42 #include "base/strings/utf_string_conversions.h" | 38 #include "base/strings/utf_string_conversions.h" |
| 43 #include "base/sys_info.h" | 39 #include "base/sys_info.h" |
| 44 #include "base/threading/thread_restrictions.h" | 40 #include "base/threading/thread_restrictions.h" |
| 45 #include "base/time/time.h" | 41 #include "base/time/time.h" |
| 42 #include "build/build_config.h" |
| 43 |
| 44 #if defined(OS_MACOSX) |
| 45 #include <AvailabilityMacros.h> |
| 46 #include "base/mac/foundation_util.h" |
| 47 #endif |
| 46 | 48 |
| 47 #if defined(OS_ANDROID) | 49 #if defined(OS_ANDROID) |
| 48 #include "base/android/content_uri_utils.h" | 50 #include "base/android/content_uri_utils.h" |
| 49 #include "base/os_compat_android.h" | 51 #include "base/os_compat_android.h" |
| 50 #endif | 52 #endif |
| 51 | 53 |
| 52 #if !defined(OS_IOS) | 54 #if !defined(OS_IOS) |
| 53 #include <grp.h> | 55 #include <grp.h> |
| 54 #endif | 56 #endif |
| 55 | 57 |
| (...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 925 return false; | 927 return false; |
| 926 | 928 |
| 927 DeleteFile(from_path, true); | 929 DeleteFile(from_path, true); |
| 928 return true; | 930 return true; |
| 929 } | 931 } |
| 930 | 932 |
| 931 } // namespace internal | 933 } // namespace internal |
| 932 | 934 |
| 933 #endif // !defined(OS_NACL_NONSFI) | 935 #endif // !defined(OS_NACL_NONSFI) |
| 934 } // namespace base | 936 } // namespace base |
| OLD | NEW |