diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-16 04:12:26 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-16 04:12:26 +0000 |
commit | 04af979a6940c84bc315b3bf6c946824f0262614 (patch) | |
tree | 57f674d57a0094dbed84b7e10928f439e6f1c6e2 /base/file_util_linux.cc | |
parent | 25992218bf83508ab41da4246e9c634df2a07c36 (diff) | |
download | chromium_src-04af979a6940c84bc315b3bf6c946824f0262614.zip chromium_src-04af979a6940c84bc315b3bf6c946824f0262614.tar.gz chromium_src-04af979a6940c84bc315b3bf6c946824f0262614.tar.bz2 |
Make base compile with no "using base::FilePath".
For base .cc files not using the base namespace, I added a using since theses
files should be moved to the base namespace, and then explicit qualification
will no longer be necessary.
Original review URL: https://codereview.chromium.org/12226121
(reland of r182040).
Review URL: https://codereview.chromium.org/12278014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@182916 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/file_util_linux.cc')
-rw-r--r-- | base/file_util_linux.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/file_util_linux.cc b/base/file_util_linux.cc index f7d4f6e..cee2526 100644 --- a/base/file_util_linux.cc +++ b/base/file_util_linux.cc @@ -11,7 +11,7 @@ namespace file_util { -bool GetFileSystemType(const FilePath& path, FileSystemType* type) { +bool GetFileSystemType(const base::FilePath& path, FileSystemType* type) { struct statfs statfs_buf; if (statfs(path.value().c_str(), &statfs_buf) < 0) { if (errno == ENOENT) |