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

Unified Diff: chrome/app/chrome_main_mac.mm

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 | « chrome/app/breakpad_win.cc ('k') | chrome/browser/chromeos/extensions/file_browser_event_router.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/chrome_main_mac.mm
diff --git a/chrome/app/chrome_main_mac.mm b/chrome/app/chrome_main_mac.mm
index 7923836b66962783e2dec5a6251fde706f9eded9..65a70bf8403788565c3683c92a36bcd483131ae2 100644
--- a/chrome/app/chrome_main_mac.mm
+++ b/chrome/app/chrome_main_mac.mm
@@ -19,7 +19,7 @@
#include "chrome/common/chrome_paths_internal.h"
#include "policy/policy_constants.h"
-void CheckUserDataDirPolicy(FilePath* user_data_dir) {
+void CheckUserDataDirPolicy(base::FilePath* user_data_dir) {
base::mac::ScopedNSAutoreleasePool pool;
// Since the configuration management infrastructure is not initialized when
@@ -32,7 +32,7 @@ void CheckUserDataDirPolicy(FilePath* user_data_dir) {
// Now replace any vars the user might have used.
string_value =
policy::path_parser::ExpandPathVariables(string_value);
- *user_data_dir = FilePath(string_value);
+ *user_data_dir = base::FilePath(string_value);
}
}
« no previous file with comments | « chrome/app/breakpad_win.cc ('k') | chrome/browser/chromeos/extensions/file_browser_event_router.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698