Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8011)

Unified Diff: chrome_frame/test/html_util_unittests.cc

Issue 12211108: Rename FilePath -> base::FilePath in various toplevel directories (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome_frame/test/dll_redirector_loading_test.cc ('k') | chrome_frame/test/mock_ie_event_sink_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « chrome_frame/test/dll_redirector_loading_test.cc ('k') | chrome_frame/test/mock_ie_event_sink_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698