| Index: chrome/common/logging_chrome.cc
|
| diff --git a/chrome/common/logging_chrome.cc b/chrome/common/logging_chrome.cc
|
| index e588ccc8e6c6b47cb33200fb372e64c5d9e8df39..ceef7c93b41c6e17cf75d45ad6d3e4c7bfcc3f07 100644
|
| --- a/chrome/common/logging_chrome.cc
|
| +++ b/chrome/common/logging_chrome.cc
|
| @@ -167,7 +167,7 @@ base::FilePath SetUpSymlinkIfNeeded(const base::FilePath& symlink_path,
|
| // starting a new log, then delete the old symlink and make a new
|
| // one to a fresh log file.
|
| base::FilePath target_path;
|
| - bool symlink_exists = file_util::PathExists(symlink_path);
|
| + bool symlink_exists = base::PathExists(symlink_path);
|
| if (new_log || !symlink_exists) {
|
| target_path = GenerateTimestampedName(symlink_path, base::Time::Now());
|
|
|
|
|