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

Unified Diff: chrome/browser/media/webrtc_log_uploader.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/media/webrtc_log_uploader.cc
diff --git a/chrome/browser/media/webrtc_log_uploader.cc b/chrome/browser/media/webrtc_log_uploader.cc
index 81969aea55a4df2670292bfd9f2c187ddfc38822..d9893b8c7f74db0c594c05f8f58167ccae28a908 100644
--- a/chrome/browser/media/webrtc_log_uploader.cc
+++ b/chrome/browser/media/webrtc_log_uploader.cc
@@ -226,7 +226,7 @@ void WebRtcLogUploader::AddUploadedLogInfoToUploadListFile(
const std::string& report_id) {
std::string contents;
- if (file_util::PathExists(upload_list_path_)) {
+ if (base::PathExists(upload_list_path_)) {
bool read_ok = file_util::ReadFileToString(upload_list_path_, &contents);
DPCHECK(read_ok);

Powered by Google App Engine
This is Rietveld 408576698