Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1012)

Unified Diff: chrome/common/logging_chrome.cc

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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());

Powered by Google App Engine
This is Rietveld 408576698