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

Unified Diff: chrome/browser/upload_list.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/browser/upload_list.cc
diff --git a/chrome/browser/upload_list.cc b/chrome/browser/upload_list.cc
index 52c42a7255cf3e923940b1632a01959fd547a28c..3f618aa0f6228361731de3d096ba099cc80cb93f 100644
--- a/chrome/browser/upload_list.cc
+++ b/chrome/browser/upload_list.cc
@@ -49,7 +49,7 @@ void UploadList::LoadUploadListAndInformDelegateOfCompletion() {
}
void UploadList::LoadUploadList() {
- if (file_util::PathExists(upload_log_path_)) {
+ if (base::PathExists(upload_log_path_)) {
std::string contents;
file_util::ReadFileToString(upload_log_path_, &contents);
std::vector<std::string> log_entries;
« no previous file with comments | « chrome/browser/ui/webui/options/advanced_options_utils_x11.cc ('k') | chrome/browser/user_data_dir_extractor_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698