summaryrefslogtreecommitdiffstats
path: root/base/file_util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/file_util.cc')
-rw-r--r--base/file_util.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/base/file_util.cc b/base/file_util.cc
index d632b96..1ee7abc 100644
--- a/base/file_util.cc
+++ b/base/file_util.cc
@@ -400,9 +400,6 @@ FILE* OpenFile(const std::wstring& filename, const char* mode) {
bool PathExists(const std::wstring& path) {
return PathExists(FilePath::FromWStringHack(path));
}
-bool PathIsWritable(const std::wstring& path) {
- return PathIsWritable(FilePath::FromWStringHack(path));
-}
int ReadFile(const std::wstring& filename, char* data, int size) {
return ReadFile(FilePath::FromWStringHack(filename), data, size);
}