From e45e67454a7df19d63968b76ad8f614a2d6179ef Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Tue, 12 Feb 2013 22:05:39 +0000 Subject: 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 --- base/path_service.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'base/path_service.cc') diff --git a/base/path_service.cc b/base/path_service.cc index a19e78d..cb34d28 100644 --- a/base/path_service.cc +++ b/base/path_service.cc @@ -17,6 +17,8 @@ #include "base/logging.h" #include "base/synchronization/lock.h" +using base::FilePath; + namespace base { bool PathProvider(int key, FilePath* result); #if defined(OS_WIN) -- cgit v1.1