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

Unified Diff: chrome/browser/chromeos/system_logs/debug_log_writer.cc

Issue 864163003: Rename base::Process::pid() to Pid() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/chromeos/system_logs/debug_log_writer.cc
diff --git a/chrome/browser/chromeos/system_logs/debug_log_writer.cc b/chrome/browser/chromeos/system_logs/debug_log_writer.cc
index 3c31f6ec16646f1dd20d5cc3eaa5a55f5c0539a9..1c2b0896485372fccddf3ac2265725ab24025bcb 100644
--- a/chrome/browser/chromeos/system_logs/debug_log_writer.cc
+++ b/chrome/browser/chromeos/system_logs/debug_log_writer.cc
@@ -99,7 +99,7 @@ void RunCommand(const std::vector<std::string>& argv,
int exit_code = 0;
if (!process.WaitForExit(&exit_code)) {
- LOG(ERROR) << "Can't get exit code for pid " << process.pid();
+ LOG(ERROR) << "Can't get exit code for pid " << process.Pid();
if (!callback.is_null())
callback.Run(false);

Powered by Google App Engine
This is Rietveld 408576698