| Index: chrome/browser/chromeos/system/timezone_settings.cc
|
| diff --git a/chrome/browser/chromeos/system/timezone_settings.cc b/chrome/browser/chromeos/system/timezone_settings.cc
|
| index 5aa659381083024aa5cf332d11f6089cf8f87101..83946f585022f9b8d39262063dea0a799524ff8d 100644
|
| --- a/chrome/browser/chromeos/system/timezone_settings.cc
|
| +++ b/chrome/browser/chromeos/system/timezone_settings.cc
|
| @@ -201,7 +201,7 @@ void SetTimezoneIDFromString(const std::string& id) {
|
| base::FilePath timezone_file(kTimezoneFilesDir + id);
|
|
|
| // Make sure timezone_file exists.
|
| - if (!file_util::PathExists(timezone_file)) {
|
| + if (!base::PathExists(timezone_file)) {
|
| LOG(ERROR) << "SetTimezoneID: Cannot find timezone file "
|
| << timezone_file.value();
|
| return;
|
|
|