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

Unified Diff: base/test/scoped_path_override.cc

Issue 12286020: Replace FilePath with base::FilePath. (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 | « base/sys_info_unittest.cc ('k') | base/test/test_file_util_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/scoped_path_override.cc
diff --git a/base/test/scoped_path_override.cc b/base/test/scoped_path_override.cc
index bb38c7f95171e3eed50e07025b8fe7d2544f31f9..495ba2fbaf788518fb05aad7454eb6e20947938b 100644
--- a/base/test/scoped_path_override.cc
+++ b/base/test/scoped_path_override.cc
@@ -16,7 +16,7 @@ ScopedPathOverride::ScopedPathOverride(int key) : key_(key) {
CHECK(result);
}
-ScopedPathOverride::ScopedPathOverride(int key, const FilePath& dir)
+ScopedPathOverride::ScopedPathOverride(int key, const base::FilePath& dir)
: key_(key) {
bool result = PathService::Override(key, dir);
CHECK(result);
« no previous file with comments | « base/sys_info_unittest.cc ('k') | base/test/test_file_util_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698