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

Unified Diff: chrome_frame/chrome_launcher_utils.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/chrome_launcher_unittest.cc ('k') | chrome_frame/chrome_tab.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/chrome_launcher_utils.cc
diff --git a/chrome_frame/chrome_launcher_utils.cc b/chrome_frame/chrome_launcher_utils.cc
index 0465b7bdca211c6fc0d2eb86503ea7ccdf5c56b5..3fde2bfe041006f72e6631d09605e5ba15ddb046 100644
--- a/chrome_frame/chrome_launcher_utils.cc
+++ b/chrome_frame/chrome_launcher_utils.cc
@@ -29,10 +29,10 @@ bool CreateChromeLauncherCommandLine(scoped_ptr<CommandLine>* command_line) {
bool success = false;
// The launcher EXE will be in the same directory as the Chrome Frame DLL,
// so create a full path to it based on this assumption.
- FilePath module_path;
+ base::FilePath module_path;
if (PathService::Get(base::FILE_MODULE, &module_path)) {
- FilePath current_dir = module_path.DirName();
- FilePath chrome_launcher = current_dir.Append(
+ base::FilePath current_dir = module_path.DirName();
+ base::FilePath chrome_launcher = current_dir.Append(
chrome_launcher::kLauncherExeBaseName);
if (file_util::PathExists(chrome_launcher)) {
command_line->reset(new CommandLine(chrome_launcher));
@@ -89,8 +89,8 @@ bool CreateLaunchCommandLine(scoped_ptr<CommandLine>* command_line) {
return CreateChromeLauncherCommandLine(command_line);
}
-FilePath GetChromeExecutablePath() {
- FilePath cur_path;
+base::FilePath GetChromeExecutablePath() {
+ base::FilePath cur_path;
PathService::Get(base::DIR_MODULE, &cur_path);
cur_path = cur_path.Append(chrome::kBrowserProcessExecutableName);
« no previous file with comments | « chrome_frame/chrome_launcher_unittest.cc ('k') | chrome_frame/chrome_tab.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698