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

Unified Diff: win8/test/metro_registration_helper.cc

Issue 12294008: Fix more remaining FilePath -> 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 | « webkit/media/android/webmediaplayer_android.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: win8/test/metro_registration_helper.cc
diff --git a/win8/test/metro_registration_helper.cc b/win8/test/metro_registration_helper.cc
index 79e19d44b589c1f7660861d3a874f157bdae8dca..97442a810a936174037ea473d5209297239c8447 100644
--- a/win8/test/metro_registration_helper.cc
+++ b/win8/test/metro_registration_helper.cc
@@ -28,12 +28,12 @@ namespace win8 {
bool RegisterTestDefaultBrowser(const string16& app_user_model_id,
const string16& viewer_process_name) {
- FilePath dir;
+ base::FilePath dir;
if (!PathService::Get(base::DIR_EXE, &dir))
return false;
- FilePath chrome_exe(dir.Append(kChromeExe));
- FilePath registrar(dir.Append(kRegistrar));
+ base::FilePath chrome_exe(dir.Append(kChromeExe));
+ base::FilePath registrar(dir.Append(kRegistrar));
if (!file_util::PathExists(chrome_exe) || !file_util::PathExists(registrar)) {
LOG(ERROR) << "Could not locate " << kChromeExe << " or " << kRegistrar;
« no previous file with comments | « webkit/media/android/webmediaplayer_android.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698