Chromium Code Reviews| Index: base/file_util.h |
| diff --git a/base/file_util.h b/base/file_util.h |
| index cd7fa9fafcbe68865e578b3c173adb84419e34e7..68055a577381004774edba621dddd6a3812a0547 100644 |
| --- a/base/file_util.h |
| +++ b/base/file_util.h |
| @@ -659,6 +659,14 @@ enum FileSystemType { |
| BASE_EXPORT bool GetFileSystemType(const FilePath& path, FileSystemType* type); |
| #endif |
| +#if defined (OS_POSIX) |
|
Evan Martin
2011/08/24 22:38:53
no space after defined
Sam Kerner (Chrome)
2011/08/25 14:04:37
Done.
|
| +BASE_EXPORT bool IsPathControlledByUser(const FilePath& base, |
| + const FilePath& path, |
| + uid_t owner_uid); |
| + |
| +BASE_EXPORT bool IsPathControlledByAdmin(const FilePath& path); |
|
Evan Martin
2011/08/24 22:38:53
this one needs doc comments too
Sam Kerner (Chrome)
2011/08/25 14:04:37
Done.
|
| +#endif |
| + |
| } // namespace file_util |
| // Deprecated functions have been moved to this separate header file, |