Chromium Code Reviews| Index: base/file_util_posix.cc |
| diff --git a/base/file_util_posix.cc b/base/file_util_posix.cc |
| index 56dc8501521294ae2e5c4961bad39cb6f40222fc..98e26ad0e625cceb8601288c9b9f9658376d9081 100644 |
| --- a/base/file_util_posix.cc |
| +++ b/base/file_util_posix.cc |
| @@ -58,8 +58,7 @@ namespace file_util { |
| namespace { |
| -#if defined(OS_BSD) || defined(OS_IOS) || (defined(OS_MACOSX) && \ |
| - MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5) |
| +#if defined(OS_BSD) || defined(OS_IOS) || defined(OS_MACOSX) |
|
Mark Mentovai
2012/07/19 20:38:41
Doesn’t OS_IOS imply OS_MACOSX? You should be able
Robert Sesek
2012/07/19 20:43:01
Yes, it does. base/build_config.h:
#if defined(__
|
| typedef struct stat stat_wrapper_t; |
| static int CallStat(const char *path, stat_wrapper_t *sb) { |
| base::ThreadRestrictions::AssertIOAllowed(); |