diff options
Diffstat (limited to 'chrome/browser/chromeos/boot_times_loader.cc')
-rw-r--r-- | chrome/browser/chromeos/boot_times_loader.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/chromeos/boot_times_loader.cc b/chrome/browser/chromeos/boot_times_loader.cc index a9919ae..ead638d 100644 --- a/chrome/browser/chromeos/boot_times_loader.cc +++ b/chrome/browser/chromeos/boot_times_loader.cc @@ -198,7 +198,7 @@ static void SendBootTimesToUMA(const BootTimesLoader::BootTimes& boot_times) { static const base::FilePath::CharType kBootTimesSent[] = FPL("/tmp/boot-times-sent"); base::FilePath sent(kBootTimesSent); - if (file_util::PathExists(sent)) + if (base::PathExists(sent)) return; UMA_HISTOGRAM_TIMES("BootTime.Total", @@ -228,7 +228,7 @@ static void SendBootTimesToUMA(const BootTimesLoader::BootTimes& boot_times) { boot_times.system, boot_times.chrome); file_util::WriteFile(sent, boot_times_text.data(), boot_times_text.size()); - DCHECK(file_util::PathExists(sent)); + DCHECK(base::PathExists(sent)); } void BootTimesLoader::Backend::GetBootTimesAndRunCallback( @@ -250,7 +250,7 @@ void BootTimesLoader::Backend::GetBootTimesAndRunCallback( // Wait until firmware-boot-time file exists by reposting. base::FilePath log_dir(kLogPath); base::FilePath log_file = log_dir.Append(kFirmwareBootTime); - if (!file_util::PathExists(log_file)) { + if (!base::PathExists(log_file)) { BrowserThread::PostDelayedTask( BrowserThread::FILE, FROM_HERE, |