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.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.cc')
-rw-r--r-- | base/file_util.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/base/file_util.cc b/base/file_util.cc index 07f2771..03e70f9 100644 --- a/base/file_util.cc +++ b/base/file_util.cc @@ -18,6 +18,8 @@ #include "base/string_util.h" #include "base/utf_string_conversions.h" +using base::FilePath; + namespace { const FilePath::CharType kExtensionSeparator = FILE_PATH_LITERAL('.'); |