From a3ef4830d5b5fdc52e5d7d0cb33dae8844f0961e Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Sat, 2 Feb 2013 05:12:33 +0000 Subject: Add FilePath to base namespace. This updates headers that forward-declare it and a few random places to use the namespace explicitly. There us a using declaration in file_path.h that makes the rest compile, which we can do in future passes. Review URL: https://codereview.chromium.org/12163003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180245 0039d316-1c4b-4281-b951-d872f2087c98 --- chromeos/chromeos_test_utils.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'chromeos/chromeos_test_utils.h') diff --git a/chromeos/chromeos_test_utils.h b/chromeos/chromeos_test_utils.h index b424580..db0bc66 100644 --- a/chromeos/chromeos_test_utils.h +++ b/chromeos/chromeos_test_utils.h @@ -7,7 +7,9 @@ #include +namespace base { class FilePath; +} namespace chromeos { namespace test_utils { @@ -15,7 +17,7 @@ namespace test_utils { // Returns the path to the given test data file for this library. bool GetTestDataPath(const std::string& component, const std::string& filename, - FilePath* data_dir); + base::FilePath* data_dir); } // namespace test_utils } // namespace chromeos -- cgit v1.1