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

Unified Diff: chrome/browser/platform_util_linux.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/platform_util_linux.cc
diff --git a/chrome/browser/platform_util_linux.cc b/chrome/browser/platform_util_linux.cc
index 4314762cf63ad5d0b7447ba3c081e0e7ba6dc6b5..c94f8fed2a3d3d3bd7e10c96cf4c900a54d9f58a 100644
--- a/chrome/browser/platform_util_linux.cc
+++ b/chrome/browser/platform_util_linux.cc
@@ -39,7 +39,7 @@ void XDGUtil(const std::string& util, const std::string& arg) {
base::Process process = base::LaunchProcess(argv, options);
if (process.IsValid())
- base::EnsureProcessGetsReaped(process.pid());
+ base::EnsureProcessGetsReaped(process.Pid());
}
void XDGOpen(const std::string& path) {

Powered by Google App Engine
This is Rietveld 408576698