diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-12 20:12:24 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-12 20:12:24 +0000 |
commit | 39a1a06a6a01617cc5f8f81db8ae23704700a73f (patch) | |
tree | 00ee129dcafc9b096f4b79037f8bb1486af93e76 /base/file_util.h | |
parent | e2b56436aa3784f9a1bdf506b1430f68f2ec49eb (diff) | |
download | chromium_src-39a1a06a6a01617cc5f8f81db8ae23704700a73f.zip chromium_src-39a1a06a6a01617cc5f8f81db8ae23704700a73f.tar.gz chromium_src-39a1a06a6a01617cc5f8f81db8ae23704700a73f.tar.bz2 |
posix: directories should only be readable by the user.
Almost all the data we store is private, so we shouldn't even allow
it to be group-readable. Note that files still obey the user's umask
and if someone wants to make their download directory world-readable
we won't undo that.
BUG=11776
Review URL: http://codereview.chromium.org/113287
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15890 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/file_util.h')
-rw-r--r-- | base/file_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/file_util.h b/base/file_util.h index 47254ab..3d07229 100644 --- a/base/file_util.h +++ b/base/file_util.h @@ -316,7 +316,7 @@ bool CreateNewTempDirectory(const std::wstring& prefix, // Creates a directory, as well as creating any parent directories, if they // don't exist. Returns 'true' on successful creation, or if the directory -// already exists. +// already exists. The directory is only readable by the current user. bool CreateDirectory(const FilePath& full_path); // Deprecated temporary compatibility function. bool CreateDirectory(const std::wstring& full_path); |