| Index: base/file_util_linux.cc
|
| diff --git a/base/file_util_linux.cc b/base/file_util_linux.cc
|
| index 14e801c49489229ac929f4397e8e5076e8a6c0da..2910c9cb4ec73065556bda112f4712e87fabaff8 100644
|
| --- a/base/file_util_linux.cc
|
| +++ b/base/file_util_linux.cc
|
| @@ -25,9 +25,9 @@
|
| #define TMPFS_MAGIC 0x01021994
|
| #endif
|
|
|
| -namespace file_util {
|
| +namespace base {
|
|
|
| -bool GetFileSystemType(const base::FilePath& path, FileSystemType* type) {
|
| +bool GetFileSystemType(const FilePath& path, FileSystemType* type) {
|
| struct statfs statfs_buf;
|
| if (statfs(path.value().c_str(), &statfs_buf) < 0) {
|
| if (errno == ENOENT)
|
| @@ -75,4 +75,4 @@ bool GetFileSystemType(const base::FilePath& path, FileSystemType* type) {
|
| return true;
|
| }
|
|
|
| -} // namespace file_util
|
| +} // namespace base
|
|
|