| Index: chrome/browser/chromeos/boot_times_loader.cc
|
| diff --git a/chrome/browser/chromeos/boot_times_loader.cc b/chrome/browser/chromeos/boot_times_loader.cc
|
| index a9919ae301a600e91f3c636300bdc1622331d42a..ead638daf1144b92ef02f19335762dc9f3b8307f 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,
|
|
|