diff options
author | skerner@chromium.org <skerner@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-30 15:33:28 +0000 |
---|---|---|
committer | skerner@chromium.org <skerner@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-30 15:33:28 +0000 |
commit | bd781d897ea507f9abc028462d04224ca273875a (patch) | |
tree | bf14c6237ec30d3e1815e3978807d1943ad22f9f /base/file_util.h | |
parent | 5021691cce9e56fe0bb778df3ad92e41c55c6ed0 (diff) | |
download | chromium_src-bd781d897ea507f9abc028462d04224ca273875a.zip chromium_src-bd781d897ea507f9abc028462d04224ca273875a.tar.gz chromium_src-bd781d897ea507f9abc028462d04224ca273875a.tar.bz2 |
Remove some debug switches:
--issue35198-crxdir-browser
--issue35198-permission
They were used to understand issue 35198. They are no longer needed. There is one more switch, --issue35198-logging, that is not being removed in this CL. The logging it adds may still be useful.
BUG=50604
TEST=manual
Review URL: http://codereview.chromium.org/3052023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54323 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/file_util.h')
-rw-r--r-- | base/file_util.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/base/file_util.h b/base/file_util.h index 66e450a..bd973b23 100644 --- a/base/file_util.h +++ b/base/file_util.h @@ -273,13 +273,8 @@ bool CreateNewTempDirectory(const FilePath::StringType& prefix, // Create a directory within another directory. // Extra characters will be appended to |prefix| to ensure that the // new directory does not have the same name as an existing directory. -// If |loosen_permissions| is true, the new directory will be readable -// and writable to all users on windows. It is ignored on other platforms. -// |loosen_permissions| exists to allow debugging of crbug/35198, and will -// be removed when the issue is understood. bool CreateTemporaryDirInDir(const FilePath& base_dir, const FilePath::StringType& prefix, - bool loosen_permissions, FilePath* new_dir); // Creates a directory, as well as creating any parent directories, if they |