summaryrefslogtreecommitdiffstats
path: root/chrome/installer/tools
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-08 22:38:41 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-08 22:38:41 +0000
commit3ea1b18715919a522c6711e5ca5f2fd40e485850 (patch)
treee17d17820edba1ce729fbe9948a23b498bfe1286 /chrome/installer/tools
parent5ffc16b6a8ab99e5470cd23645fd3a12a04c6a0e (diff)
downloadchromium_src-3ea1b18715919a522c6711e5ca5f2fd40e485850.zip
chromium_src-3ea1b18715919a522c6711e5ca5f2fd40e485850.tar.gz
chromium_src-3ea1b18715919a522c6711e5ca5f2fd40e485850.tar.bz2
Rename FilePath to base::FilePath and use new location of string_number_conversions in some chrome subdirectories.
Review URL: https://codereview.chromium.org/12218065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181564 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer/tools')
-rw-r--r--chrome/installer/tools/validate_installation_main.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/installer/tools/validate_installation_main.cc b/chrome/installer/tools/validate_installation_main.cc
index 5661457..bc7f6fa 100644
--- a/chrome/installer/tools/validate_installation_main.cc
+++ b/chrome/installer/tools/validate_installation_main.cc
@@ -29,7 +29,7 @@ class ConsoleLogHelper {
~ConsoleLogHelper();
private:
- static FilePath GetLogFilePath();
+ static base::FilePath GetLogFilePath();
static bool DumpLogMessage(int severity,
const char* file,
int line,
@@ -40,7 +40,7 @@ class ConsoleLogHelper {
static FILE* const kOutputStream_;
static const logging::LogSeverity kViolationSeverity_;
static logging::LogMessageHandlerFunction old_message_handler_;
- FilePath log_file_path_;
+ base::FilePath log_file_path_;
};
// static
@@ -88,12 +88,12 @@ ConsoleLogHelper::~ConsoleLogHelper() {
// process exit since we redirect log messages to stderr.
// static
FilePath ConsoleLogHelper::GetLogFilePath() {
- FilePath log_path;
+ base::FilePath log_path;
if (PathService::Get(base::DIR_TEMP, &log_path))
return log_path.Append(kLogFileName_);
else
- return FilePath(kLogFileName_);
+ return base::FilePath(kLogFileName_);
}
// A logging::LogMessageHandlerFunction that sends the body of messages logged