diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-12 22:05:39 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-12 22:05:39 +0000 |
commit | e45e67454a7df19d63968b76ad8f614a2d6179ef (patch) | |
tree | 6aed0f48429674163a5de404b73423797cae131d /base/file_util_posix.cc | |
parent | 3b01e8785dae09c2fae12d475b97c56710a44ae3 (diff) | |
download | chromium_src-e45e67454a7df19d63968b76ad8f614a2d6179ef.zip chromium_src-e45e67454a7df19d63968b76ad8f614a2d6179ef.tar.gz chromium_src-e45e67454a7df19d63968b76ad8f614a2d6179ef.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.
Review URL: https://codereview.chromium.org/12226121
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@182032 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/file_util_posix.cc')
-rw-r--r-- | base/file_util_posix.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/base/file_util_posix.cc b/base/file_util_posix.cc index 5bf4fb1..da7a096 100644 --- a/base/file_util_posix.cc +++ b/base/file_util_posix.cc @@ -58,6 +58,8 @@ #include "base/chromeos/chromeos_version.h" #endif +using base::FilePath; + namespace file_util { namespace { |