Revert 182032
> 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.
> 
> Review URL: https://codereview.chromium.org/12226121

TBR=brettw@chromium.org
Review URL: https://codereview.chromium.org/12207132

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@182040 0039d316-1c4b-4281-b951-d872f2087c98


CrOS-Libchrome-Original-Commit: 5272b32122055125dddef44d2e86c9cb7603f16f
diff --git a/base/file_util_linux.cc b/base/file_util_linux.cc
index cee2526..f7d4f6e 100644
--- a/base/file_util_linux.cc
+++ b/base/file_util_linux.cc
@@ -11,7 +11,7 @@
 
 namespace file_util {
 
-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)