Index: chrome_frame/test/html_util_unittests.cc |
diff --git a/chrome_frame/test/html_util_unittests.cc b/chrome_frame/test/html_util_unittests.cc |
index f5e8030f4882dc1780bb7c73e0a7c4967a082039..66b05465a46add25ef5c3c884a7b0bd92808011f 100644 |
--- a/chrome_frame/test/html_util_unittests.cc |
+++ b/chrome_frame/test/html_util_unittests.cc |
@@ -34,13 +34,13 @@ class HtmlUtilUnittest : public testing::Test { |
HtmlUtilUnittest() {} |
// Returns the test path given a test case. |
- virtual bool GetTestPath(const std::string& test_case, FilePath* path) { |
+ virtual bool GetTestPath(const std::string& test_case, base::FilePath* path) { |
if (!path) { |
NOTREACHED(); |
return false; |
} |
- FilePath test_path; |
+ base::FilePath test_path; |
if (!PathService::Get(base::DIR_SOURCE_ROOT, &test_path)) { |
NOTREACHED(); |
return false; |
@@ -61,7 +61,7 @@ class HtmlUtilUnittest : public testing::Test { |
return false; |
} |
- FilePath path; |
+ base::FilePath path; |
if (!GetTestPath(test_case, &path)) { |
NOTREACHED(); |
return false; |